@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background: black;
}


.logo {
    width: 20%;
    aspect-ratio: 1 / 1;
    max-height: 300px;
    animation: linear 3s logo-rotation infinite;
    background-color: red;
}

@keyframes logo-rotation {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.title {
    font-family: "Work Sans";
    font-weight: 500;
    color: white;
    font-size: 15px;
}

.social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px
}

.social a {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 18px;
    color: transparent;
    background-clip: text;
    text-decoration: none;
}

.social .instagram {
    background-image: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

.social .tiktok {
    background-image: linear-gradient(to right, #25F4EE, #FFFFFF, #FE2C55);
}