@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');
* {
    padding:0;
    margin:0;
    vertical-align:baseline;
    list-style:none;
    border:0
    }

body{
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #efefef;
}

header {
    background: rgb(44,0,121);
    background: linear-gradient(150deg, rgba(44,0,121,1) 4%, rgba(81,0,186,1) 63%);
}

.logo {
    display: flex;
    justify-content: center;
    padding: 10px 36px;
}

.shape {
    margin-bottom: -10px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

img{
    max-width: 100%;
    object-fit: contain;
}

.item img {
    height: auto;
}

#titulo {
    text-align: center;
}

#titulo h1 {
    font-size: 45px;
}

#titulo h2 {
    font-weight: 500;
    font-size: 25px;
}

#botoes{
    display: flex;
    flex-direction: column;
    max-width: 780px;
}

.grupo{
    display: flex;
    justify-content: center;
    align-content:center
}



.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    margin: 15px;
    text-decoration: none;
}

.item p {
    font-size: 25px;
    text-align: center;
}

.linha {
    width: 300px;
    height: 3px;
    margin: auto;
    background: rgb(44,0,121);
    background: linear-gradient( 
150deg, rgba(44,0,121,1) 4%, rgba(81,0,186,1) 63%);
}

#rodape {
    margin-top: 40px;
    margin-bottom: 30px;

}

#rodape .mensagem{
    display:flex;
    align-items: center;
}

#rodape .mensagem img{
    width: 30px;
    margin: 5px;
}


.horario{
    display: flex;
    align-items: center;
}

.horario img{
    width: 60px;
    height: 60px;
    margin-right: 15px;
}



@media only screen and (max-width: 600px) {
    .item p {
        font-size: 12px;
    }

    #titulo h1 {
        font-size: 30px;
    }

    #titulo h2 {
        font-size: 16px;
    }
}

/************/
