@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    text-decoration: none;
}
body{
    background-color: #e83c03d3  ;
    overflow-x: hidden;
}
header div.logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E83E03;
}
header div.logo img{
    margin-left: 10px;
    margin-top: 10px;
}
header div.logo a{
    color: white;
    font-weight: bold;
    font-size: 30px;
    margin-right: 20px;
}
header div.logo a:hover{
    transition: .5s;
    opacity: .8;
    font-size: 25px;
}
nav.nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #1C1A1A;
}
nav.nav a#sobre{
    text-decoration: underline;
    transition: 0.5s;
}
nav.nav a {
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
}
nav.nav a:hover {
    transition: 0.5s;
    font-size: 25px;
    opacity: .8;
    text-decoration: underline;
}
/* main */
section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section h1{
    font-size: 1.9rem;
    font-weight: bold;
    margin: 10px;
}
section h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
    margin-top: 30px;
}
section p{
    color: white;
    font-weight: bold;
    max-width: 770px;
    margin-bottom: 20px;
}
section img{
    height: 687px;
    margin-bottom: 40px;
}
@media screen and (max-width:1000px){
    section p{
        color: white;
        font-weight: bold;
        max-width: 600px;
        margin-bottom: 20px;
    }
    section img{
        height: 569px;
        margin-bottom: 40px;
    }

}
@media screen and (max-width:680px){
    header div.logo img{
        height: 50px;
    }
    header div.logo a{
        font-size: 15px;
        margin-right: 20px;
    }
    section p{
        color: white;
        font-weight: bold;
        max-width: 320px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    section img{
        height: 269px;
        margin-bottom: 40px;
    }
}
