/*
Theme Name: Cancao
Version: 1.0
*/

/* RESET EXTREMO */
html, body, div, img {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* BLOQUEIA QUALQUER INTERFERÊNCIA */
* {
    all: unset;
    box-sizing: border-box;
}

/* REDEFINE BASE */
html, body {
    width: 100vw;
    height: 100vh;
    background: #000;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* ROOT CENTRAL ABSOLUTO */
#cv-root {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* IMAGEM */
#cv-logo {
    height: 90vh;
    max-width: 95vw;
    object-fit: contain;
    display: block;
}

/* TEXTO */
#cv-texto {
    text-align: center;
    margin-top: 20px;
}

/* AGUARDE */
#cv-aguarde {
    font-size: 5rem;
    font-weight: 900;
    color: #FFD700;
    letter-spacing: 3px;
}

/* FRASE */
#cv-frase {
    font-size: 2rem;
    color: #ffffff;
}

/* REMOVE ELEMENTOS INJETADOS */
a, button, iframe,
[class*="whatsapp"],
[id*="whatsapp"],
[class*="cookie"],
[id*="cookie"],
[class*="consent"] {
    display: none !important;
}