
.roboto-<uniquifier> {
    font-family: "Merriweather", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    margin: 0;
    font-family: "Merriweather", serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header, footer {
    background-color: rgb(209, 210, 215);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 18px;
}
.cabecalho-image{
    height: 80px;
}
.cabecalho-menu{
    display: flex;
    gap: 15px;
    
}
.cabecalho-menu-item{
    font-family: "Merriweather", serif;
    color: rgb(97, 160, 189);
    font-weight: 400;
    font-size: 19px;
}
.conteudo{
    background-color: rgb(164, 174, 213);
    display: flex;
    justify-items: space-around;
    flex-wrap: wrap;
    color: #0b0632;
    font-size: 15px;
}

.sidebar-left{
    font-family: "Merriweather", serif;
    display: flex;
    font-weight: 400;
    color: rgb(5, 22, 30);
    flex-direction: column;
    gap: 12px;
}
.main-center{
    flex: 3;
    margin-left: 20px;
    background-color: rgb(124, 146, 173);
    padding-left: 10px;
    min-height: 100%;

    gap: 10px;
}
.sidebar-right{
    font-family: "Merriweather", serif;
    display: flex;
    font-weight: 400;
    color: rgb(32, 55, 66);
    flex-direction: column;
    gap: 10px;
}
.footer {
    text-align: center;
    padding: 15px;
    color: rgb(57, 68, 65);
    font-size: 12px;
}

@media only screen and (max-width: 768px) {
    main {
        flex-direction: column;
    }content{
        margin-left: 0;
        margin-top: 20px;
    }
.sidebar, content {
        flex: 1;
    }
}
