body {
    margin: 0;
    background-image: url(../images/back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#scene {
    position: relative;
    width: 80%;
    max-width: 800px;
    min-width: 400px;
    aspect-ratio: 1;
}

#logo {
    position: absolute;
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50%;
    aspect-ratio: 2.6;
    transform: translateX(-50%) scale(1);
    left: 50%;
    top: 36%;
    transition: all 0.3s ease-in-out;
}

#scene:hover>#logo {
    transform: translateX(-50%) scale(1.05);
}

#text {
    background-image: url(../images/TEXT.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    aspect-ratio: 1;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

#scene:hover>#text {
    transform: rotate(10deg);
}

#socials {
    display: flex !important;
    position: absolute;
    width: 180px;
    height: fit-content;
    justify-content: space-between;
    z-index: 99;
    transform: translateX(-50%);
    left: 50%;
    bottom: 15%;
}

#socials a {
    display: block;
    height: 30px;
    aspect-ratio: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#socials a:hover {
    transform: scale(1.2);
}

#fb {
    background-image: url(../images/comp1.png);
}

#wa {
    background-image: url(../images/comp5.png);
}

#ig {
    background-image: url(../images/comp2.png);
}

#be {
    background-image: url(../images/comp3.png);
}

#in {
    background-image: url(../images/comp4.png);
}