* {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    text-decoration: none;
}

#preloader {
    height: 100vh;
    min-width: 100%;
    background-color: #014E4C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: linear 650ms all;
    position: fixed;
    top: 0;
}

#Logo {
    max-width: 300px;
    width: 30%;
    animation: 1s infinite linear Logo-anim;
}

canvas {
    background: linear-gradient(#e7fefe, #9ec0be);
    max-width: 100%;
    height: 100vh;
    position: fixed;
    top:0;
    z-index: -10;
}

#root {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#root a{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background: #e7fefe;
    padding: 16px 32px;
    max-width: 80%;
    width: 300px;
    border-radius: 16px;
    color: #000;
    box-shadow: #0001 0 0 12px;
    transition: 0.5s ease;
    font-size: x-large;
    font-weight: 200;
}

#root a:hover {
    transform: scale(1.1);
}

#logo-black img{
    max-width: 70%;
}
#logo-black {
    text-align: center;
    background-color: #014E4C;
    aspect-ratio: 1/1;
    width: 100px;
    padding: 1rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    text-align: center;
    opacity: 0.4;
}

#root p {
    padding-top: 16px;
}

@keyframes Logo-anim {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}