* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
}



/*
.background {
    background-image: url('coming-soon - LM.png');
     background-size: calc(100% / 1) 100%; Divide a largura da tela em 3 partes 
    background-position: top left;
    background-repeat: repeat-x;  Repetir a imagem horizontalmente 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
}

*/

.background {
    background-color: #f6f5f2; /* Cor de fundo */
    background-image: url('soon3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
}


h1 {
    font-size: 3em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}


/* Para telas maiores (desktops e laptops) */
@media (min-width: 1024px) {
    .background {
        background-image: url('soon3.png'); /* Imagem para desktop */
    }

    h1 {
        font-size: 4em;
    }
}

/* Para tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .background {
        background-image: url('soon3.png'); /* Imagem para tablets */
        background-size: contain;
    }

    h1 {
        font-size: 3.5em;
    }
}

/* Para dispositivos móveis */
@media (max-width: 767px) {
    .background {
        background-image: url('coming-soon.png'); /* Imagem para dispositivos móveis */
        background-size: cover;
    }

    h1 {
        font-size: 2.5em;
    }
}