html {
    background-image: url(../img/fondo.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

#logo {
    width: 520px;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

header {
    /* background-color: #33333340; */
    color: white;
    text-align: right;
    padding: 0px;
    position: fixed;
    top: 2vh;
    right: 2vw;
    width: 100%;
}

.contenedor {
    align-items: right;
    width: 100%;
}

.cuerpo {
    font-family: "New Amsterdam", sans-serif;
    color: white;
    text-align: center;
    padding: 0px;
    position: fixed;
    width: 100%;
}

.message {
    font-size: 100px;
    text-align: center;
    width: 100%;
}

i {
    font-size: 5vh;
    color: white;
}

footer {
    background-color: #33333340;
    color: white;
    text-align: center;
    padding: 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .message {
        font-size: 70px;
    }

    i {
        font-size: 3vh;
    }

    #logo {
        width: 350px;
    }

    header {
        right: 0;
        text-align: center;
    }
}