@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;700&family=Roboto:wght@400;500;700;900&display=swap');

body{
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 255);
}

.logo{
    padding: 20px 50px;
}

.meuImc{
    padding: 15px 50px
}

.meuImc label{
    font-weight: 400;
    font-size: 16px;
}

.meuImc input{
    height: 50px;
    font-size: 16px;
    border: none;
    background-color: rgb(232, 244, 253);
}

.meuImc input::placeholder{
    color: rgb(158, 180, 197);
    font-weight: bold;
    font-size: 18px;
}

#botao{
    position: relative;
    display: block;
    width: 100%;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgb(11, 137, 255);
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    margin-top: 50px;
    transition: all ease .3s;
}

#botao:hover{
    background-color: rgb(6, 75, 139);
}

#resultado{
    margin-top: 10px;
    text-align: center;
    font-size: 22px;
    background-color: rgb(235, 235, 235);
    color: rgb(83, 83, 83);
    padding: 20px;
    border-radius: 5px;
    height: auto;
    font-weight: bold;
}

.cuidado{
    color: red;
    font-weight: 400;
    font-size: 17px;
}

.atencao{
    color: rgb(223, 126, 0);
    font-weight: 400;
    font-size: 17px;
}

.parabens{
    color: rgb(10, 126, 30);
    font-weight: 400;
    font-size: 17px;
}

.produtos{
    padding: 0 75px;
}

#banners-saude, #banners-match{
    display: none;
    transition: all ease .5s
}

.banner-saude, .banner-saude-abdomen{
    width: 100%;
    max-width: 500px;
}

@media (min-width: 300px) and (max-width: 767px) {
    .meuImc{
        padding: 50px 10px;
    }
    .produtos{
        padding: 0 10px;
    }
    #banners-saude, #banners-match{
        display: none;
        transition: all ease .5s
    }
}