@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Tilt+Neon&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Tilt Neon';
}

.navbar {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: #0d0d0da9;
}
  
ul {
    display: flex;
    gap: 10px;
}

.navbar h3 {
    font-size: 1.8rem;
    font-weight: 200;
    color: #dfdfdf;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Permanent Marker';
}

.navbar ul li a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #dfdfdf;    
    transition: 0.3s !important;
    -webkit-transition: 0.3s !important;
    -moz-transition: 0.3s !important;
    -ms-transition: 0.3s !important;
    -o-transition: 0.3s !important;
}

.navbar ul li a:hover {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #818181;
}

.btn-left {
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    color: #dfdfdf;
    font-family: 'Tilt Neon';
    transition: 0.3s !important;
    -webkit-transition: 0.3s !important;
    -moz-transition: 0.3s !important;
    -ms-transition: 0.3s !important;
    -o-transition: 0.3s !important;
}

.btn-right {
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    color: #0d0d0d;
    background: #dfdfdf;
    border: 2px solid #dfdfdf;
    transition: 0.3s !important;
    -webkit-transition: 0.3s !important;
    -moz-transition: 0.3s !important;
    -ms-transition: 0.3s !important;
    -o-transition: 0.3s !important;
}
.btn-left:hover {
    color: #535353;
}

.btn-right:hover,
.head-left button:hover{
    border: 2px solid #dfdfdf;
    background-color: transparent;
    color: #dfdfdf;
}


/* NAV END */

/* HEADER START */

header {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: radial-gradient(circle, rgba(63, 94, 251, 0) 0%, rgba(0, 0, 0, 1) 100%),url(../img/Header3.jpg);
    background-position: center;
    background-size: cover;
}

.head-left {
    width: 50%;
}

.head-left h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 20px 0;
    color: #dfdfdf;
}

.head-left p {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #dfdfdf;
}

.head-left button {
    padding: 8px 10px;
    font-size: 0.9rem;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    border: 2px solid #dfdfdf;
    color: #dfdfdf;
    font-size: 1rem;
    transition: 0.3s !important;
    -webkit-transition: 0.3s !important;
    -moz-transition: 0.3s !important;
    -ms-transition: 0.3s !important;
    -o-transition: 0.3s !important;
}

.head-left button:hover {
    background-color: #dfdfdf;
    color: #0d0d0d;
}

.head-right {
    height: 100%;
    display: flex;
    align-items: end;
}

.head-right img {
    width: 450px;
}

/* Bridge START */

.bridge {
    width: 100%;
    height: 100px;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items:center
}

.bridge a i {
    color: #dfdfdf;
    font-size: 2rem;
    font-weight: 500;
} 

.bridge a {
    font-size: 1.5rem;
    color: #dfdfdf;
}
