/*
Theme Name: Initel
Description: Tema institucional minimalista da Initel.
Version: 1.2
Author: Jehan
*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial Black', 'Montserrat', sans-serif;
    background: url('assets/background.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;

    /* CENTRALIZAÇÃO REAL NO MEIO DA TELA */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container */
.overlay {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    box-sizing: border-box;

    /* força o conteúdo a ficar em coluna */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SOMBRA EM TODO TEXTO */
h1, p, .email {
    text-shadow:
        3px 3px 8px rgba(0,0,0,0.9),
        0px 0px 12px rgba(0,0,0,0.8);
}


/* Título */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Parágrafo */
p {
    font-size: clamp(1.2rem, 3.2vw, 1.6rem);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Email */
.email {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: bold;
}

/* CELULAR */
@media (max-width: 600px) {
    body {
        background-attachment: scroll;
    }
    .overlay {
        padding: 20px;
    }
}
