*{
    box-sizing: border-box;
}

body{
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fbfdfa;
}

 nav{
    background-color: white;
    margin-top: 0px;
    padding: 10px;
    display: flex;
    flex-flow: row;
    align-items: center;
    /* border: 1px solid black; */
    border-radius: 0px 0px 5% 5%;
    position: fixed;
    width: 100%;
    height: 155px;
    z-index: 2;
}

nav button, nav button a{
    border: none;
    background-color: white;
    font-size: 25px;
}

nav button:hover{
    color: aqua;
    border-bottom: 2px solid black;
}

nav button:hover a{
    color: aqua;
}

nav button a{
    text-decoration: none;
    color: black;
}

nav button a:hover{
    color: aqua;
}

.logo{
    /* border: 5px dotted red; */
    width: 30%;
    margin-left: 2%;
    display: flex;
    align-items: center;
}

.logo img{
    margin-left: 40px;
    height: 140px;
}

.menu{
    display: flex;
    /* border: 5px dotted red; */
    justify-content: flex-end;
    width: 78%;
    height: 40px;
    flex-flow: row;
}

.menu button{
    margin-left: 20px;
}


.dropdown button{
    height: 100%;
    margin-left: 0px;
}

.dropdown{
    /* border: 1px solid black; */
    margin-left: 20px
}


.dropdown-content a{
    text-align: center;
    padding: 10px;
    display: block;
    border: 1px solid #ccc;
    text-decoration: none;
    color: black;
}

.dropdown-content a:hover{
    background-color: aqua;
    border-bottom: 2px solid black;
}
.dropdown-content{
    display: none;
    position: absolute;
    width: 250px;
    background-color: white;
}

.dropdown:hover .dropdown-content{
    display: block;
}

header{
    padding-top: 195px;
    /* border: 1px solid black; */
    display: flex;
}

.titulo{
    margin-left: 2%;
    display: flex;
    /* border: 1px solid black; */
    width: 35%;
    
}
.titulo h2{
  text-transform:uppercase;
}

.imagem{
    width: 70%;
    /* border: 5px solid black; */
    display: flex;
    justify-content: right;
    margin-right: 8%;
}

.imagem img{
    border-radius: 10px;
}

header h2{
    font-size: 120px;
}

.conteudo{
    margin-top: 5%;
    /* border: 1px solid blue; */
    border-radius: 10px;
    margin-left: 10%;
    margin-right: 10%;
    background-color: white;
    padding: 20px;
}

.conteudo h3{
    font-size: 40px;
}

.conteudo h4{
    font-size: 30px;
}

.conteudo p{
    font-size: 25px;
    font-weight: normal;
}

footer{
    margin-top: 10%;
    /* border: 1px  solid black; */
    padding: 10%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 25px;
    background: linear-gradient(180deg,#fbfdfa,rgb(134, 230, 174));
    width: 100%;
}

footer a{
    text-decoration: none;
    color: grey;
}

.texto{
    /* border: 1px solid black; */
    width: 69%;
}

.img-full-left{
    /* border: 1px solid blue; */
    width: 31%;
}

#Volei{
    margin-top: 5%;
    /* border: 1px solid blue; */
    border-radius: 10px;
    margin-left: 10%;
    margin-right: 10%;
    background-color: white;
    padding: 20px;
    display: flex;
}
.conteudo img{
  align-items:center;
  justify-content:center;
}
