:root {
    /* Cores */
    --headerclr: #e4e4e4;
    --inputclr: #cccccc;
    --white: white;
    --black: black;
    --liclr: #e0e0e0;
    --topclr: #e4e4e4;
    --gray: rgba(204, 204, 204, 0.45);
    /* Linhas */
    --line: 2px solid #cccccc;
    --clearline: 2px solid white
}

body {
font-family: Arial, Helvetica, sans-serif;
color: var(--black);
}

.imgs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.imgs img {
    width: 100%;
}

.h1img {
    top: 100%;
    position: absolute;
    text-align: center;
    color: var(--white);
    font-size: 70px;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto {
    margin-left: 100px;
    margin-right: 100px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.topibv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.topibv h3 {
    font-size: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.IBV p {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 75px;
    margin-left: 100px;
    margin-right: 100px;
    text-align: center;
}

@media (min-width: 768px) and (max-width:1199px) {   
    .h1img {
        font-size: 35px;
        top: 50%;
    }

    .topibv {
        margin-top: 30px;
        text-align: center;
        gap: 50px;
    }
}

/* Resposividade para Celular */
@media (max-width: 768px) {

    .h1img {
        font-size: 35px;
        top: 45%;
    }

    .topibv {
        margin-top: 30px;
        text-align: center;
        gap: 50px;
    }

}