/* BASE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


/* CONTENEDOR */

.container {
    width: auto;
    height: max-content;
    position: relative;
    overflow: hidden;
}

.container .fondo {
    width: auto;
    height: 100dvh;
    object-fit: contain;
}


/* LOGO */

.logo {
    position: absolute;
    width: 25%;
    top: 4%;
    right: 0%;
    transform: translateX(-50%);
    z-index: 5;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: logoAparece 3s ease-out forwards;
}

@keyframes logoAparece {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-30px);
    }
    70% {
        opacity: 1;
        transform: scale(1.08) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* HOME */

.home {
    position: absolute;
    width: 18%;
    height: auto;
    top: 2.4%;
    left: 0%;
    border-radius: 50%;
}

.home img {
    width: 100%;
    height: 100%;
}

.trivia {
    position: absolute;
    width: 80%;
    height: auto;
    top: 13.1%;
    left: 12%;
    border-radius: 50%;
}

.trivia img {
    width: 100%;
    height: 100%;
}

.imagen1 {
    position: absolute;
    width: 81%;
    height: auto;
    top: 39.1%;
    left: 10%;
    border-radius: 50%;
}

.imagen1 img {
    width: 100%;
    height: 100%;
}

.button {
    position: absolute;
    width: 60%;
    height: auto;
    top: 88%;
    left: 21%;
    border-radius: 50%;
}

.button img {
    width: 100%;
    height: 100%;
}