/*COLOCAR EM TODAS AS PÁGINAS*/
*{
    margin: 0;
    padding: 0;
    outline: 0px;
    text-decoration: 0;
    list-style: none;
    box-sizing: border-box;
}
:root{
    --cor--1:rgb(60, 66, 60);
    --cor--2:#2DC083;
    --cor--3:goldenrod;
    --cor--4:#dff6ec;
}
body{
    background-color: #e6f5ed; 
    color: darkgreen;
}
/*CABEÇALHO*/
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
    background-color: #2DC083;
}

.logo img{
    margin: 0;
    width:85px;
    padding-left: 30px;
}

.menu {
    color: white;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 45px;
    justify-items: center;
}

.menu a {
    color: white;
    transition: transform 1s;
}
  
.menu a:hover,
.menu a:focus {
    color: darkgreen;
    text-decoration: solid;
    transform: translateX(8px) scale(1.2);   
}
/*COLOCAR EM TODAS AS PÁGINAS, ATÉ AQUI*/
main{
    height: 100vw;
    width: 85%;
    margin: auto;
}
img{
    margin-top: 20px;
    margin-left: 25%;
    width: 50%;
}
.textos{
    margin-top: 15px;
    background-color: rgb(241, 246, 242);
    text-align: center;
}
h1{
    padding-top: 15px;
    font-size: 40px;
    text-align: center;
}
p{
    width: 60%;
    font-size: 20px;
    padding-bottom: 15px;
    margin: auto;
    text-align: justify;
}
.centro{
    text-align: center;
}
