html{
    font-family: "Roboto", sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
}

body{
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
    background-color: #1d1d1d;
}

header {
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111111;
    width: 100%;
    height: 10%;
    box-shadow: 0 7px 5px black;
    z-index: 3;
}

main {
    margin-top: 20vh;
    margin-bottom: 20vh;
    min-height: 80vh;
    height: fit-content;
}

footer {
    position: fixed;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    justify-content: center;
    width: 100%;
    max-height: 20%;
    height: 10%;
    box-shadow: 0 7px 5px black;
    background-color: #111111;
}

h1 {
    color: white;
    font-family: Andale Mono, monospace;
    font-size: 5em;
    text-align: center;
    text-transform: uppercase;
    animation: fadeInTop 1s ease-in both;
}

h2 {
    color: white;
    font-family: Andale Mono, monospace;
    text-align: center;
    text-transform: uppercase;
    animation: fadeInTop 1s ease-in both;
}

p {
    text-align: center;
}

.navLink {
    display: block;
    width: fit-content;
    position: relative;
    color: white;
    text-align: center;
    margin: auto;
    text-decoration: none;
}

.navLink::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    
    transition: transform 0.3s ease-out;
}

.navLink:hover::after {
    transform: scaleX(1);
}

#nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 5%;
    align-items: center;
    width: 50%;
}

#winterArcLink {
    background: 
        linear-gradient(
            -45deg,
            transparent 40%, 
            rgba(255, 255, 255, 0.7) 50%,
            transparent 60%
        ),
        
        linear-gradient(
            to right,
            #46a6c1 0%,
            #275b69 50%,
            #ffffff 100%
        );

    background-size: 200% 100%, 100% 100%;
    
    background-repeat: no-repeat; 
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    animation: shine-effect 3s infinite linear;
}

#logo{
    margin-left: 5%;
}

#logo-image{
    aspect-ratio: 1 / 1;
    max-height: 10vh;
    max-width: 10vh;
}

.social-media {
    width: fit-content;
    max-height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    transition: all .2s ease-in-out;
}

.logo {
    color: white;
    width: 48px;
    height: 48px;
}

#yt-link {
    transform: translateX(35px);
    &:hover {
        transform: translateX(0);
    }
}

#yt-text {
    transform-origin: 30px center;
    color: white;
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#yt-link:hover #yt-text {
    opacity: 1;
    transform: scaleX(1);
}

#ig-link {
    text-decoration: none;
    transform: translateX(33%);
    &:hover {
        transform: translateX(0);
    }
}

#ig-link:hover #ig-text {
    opacity: 1;
    transform: scaleX(1);
}

.social-media-text {
    text-align: center;
    font-size: larger;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transform-origin: left center;
    opacity: 0;
    transform: scaleX(0);
    transition: all .3s ease-in-out;
}

#tiktok-link {
    transform: translateX(30px);
    &:hover {
        transform: translateX(0);
    }
}

#tiktok-text {
    transform-origin: 30px;
}

#tiktok-link:hover #tiktok-text {
    opacity: 1;
    transform: scaleX(1);
}

.toolbar {
    position: fixed;
    right: 1vw;
    bottom: 7vh;
    z-index: 3;
    border-radius: 15px;
    box-shadow: black 0 0 10px;
    transition: transform 0.3s ease-out;
}

.infoLink {
    text-align: center;
    color: #eee;
    text-transform: capitalize;
}


@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 100%;
        transform: translateY(0%);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 100%;
        transform: translateX(-50%);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 100%;
        transform: translateX(50%);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes shine-effect {
    0% {
        background-position: 300% 0; 
    }
    100% {
        background-position: -300% 0; 
    }
}