
@font-face {
    font-family: 'Aeonik';
    src: url(/fonts/Aeonik-Regular.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Aeonik';   
}

.container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

.navbar {
    position: fixed;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 2em;
}

.site-icon {
    width: 40px;
    height: 40px; 
    position: relative;
    display: flex;
}

.site-logo {
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.star{
   height: 100%; 
}

#menu-toggle-btn {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100000;
}

.btn {
    height: 2px;
    background: #ffffff;
    width: 24px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transition: all 0.3s;
}

.btn::before {
    content: " ";
    position: absolute;
    display: inline-block;
    height: 2px;
    background: #ffffff;
    transform: translateY(-4px);
    width: 24px;
    transition: all 0.3s;
    top: -2px;
}

.active .btn {
    transform: rotate(45deg);
    background: #ffffff;
}

.active .btn::before {
    top: unset;
    transform: rotate(-90deg);
    background: #ffffff;
}

.active:hover .btn::before {
    top: unset;
}

.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    color: #fff;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 1;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.num {
    font-size: 20px;
    font-family: 'Aeonik';
    letter-spacing: 4px;
    margin-right: 20px;
}

.nav-link {
    position: relative;
    padding-top: 50px;
}

.nav-link a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-family: 'scotch-display', sans-serif;
    font-weight: 300;
    font-size: 100px;
    letter-spacing: 10px;
}

.nav-link > a:hover {
    font-style: italic;
}


.nav-item-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    width: 500px;
    height: 60px;
    margin: 0 auto;
    transition: 1s;
}

.nav-footer {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    padding-bottom: 2em;
}

.nav-footer a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 0 1em;
}

.nav-footer a:hover {
    font-weight: 600;
}


@media(max-width: 900px) {

    .nav-link a{
        font-size: 80px;
    }

    .num{
        font-size: 15px;
    }

    .nav-socials a {
        font-size: 10px;
    }

}

.slogan {
    font-size: 45px;
    font-family: 'scotch-display', sans-serif;
    font-weight: 300;
    text-transform: capitalize ;
    justify-content: center;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%); 
}

svg{
    fill: #fff;
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0;  
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 2em 2em;
    display: flex;
    justify-content: right;
}

h4 {
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
}