body{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Baskerville old face';
    src: url('fonts/baskerville-old-face.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

.mainbody{
    margin: 40px 0;
}

.banner{
    width: 100%;
}

.banner img{
    width: 100%;
}

.maincontent{
    width: 90%;
    display: grid;
    grid-template-areas: "a a a a";
    gap: 40px;
    grid-auto-rows: 100px;
    margin: 0 5%;
}

.titulo{
    display: flex;
    width: 100%;
    justify-content: center;
}

.titulo h2{
    text-decoration: none;
    font-size: 30px;
    font-family: 'Baskerville old face';
    font-weight: bold;
    color: #1F3C28;
}

.maincontent a{
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 24px;
    font-family: 'Baskerville old face';
    font-weight: bold;
    color: #A07B4A;
}

.maincontent a img{
    margin-right: 10px;
}

@media only screen and (max-width: 600px){
    .maincontent{
        width: 90%;
        display: grid;
        grid-template-areas: "a a";
        gap: 40px;
        grid-auto-rows: 100px;
        margin: 0 5%;
    }

    .banner{
        padding-top: 52px;
        background-color: #1d3828;
    }

    .mainbody{
        margin: 5% 0;
    }

    .titulo h2{
        font-size: 25px;
    } 

    .maincontent a{
        font-size: 18px;
    }    
}