/*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:#006400;
    --cor--2:#2DC083;
    --cor--3:#daa520;
    --cor--4:#dff6ec;
}
body{
    background-color: var(--cor--4); 
    color: white;
}
/*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);   
}

.cabeçalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*TÉRMINO DO CABEÇALHO/INÍCIO DO MAIN*/

main{
    height: 100vw;
    background-color: white;
    color: rgb(60, 66, 60);
    min-width: 300px;
    max-width: 900px;
    text-align: justify;
    margin: auto;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0px 0px 10px #2DC083;
    /*flex-wrap: wrap;*/
    /*justify-content: center;*/
    align-items: center ;
    flex-wrap: wrap;
}
.imgMain{
    width: 500px;
    margin-left:21%
}
h1{
    text-shadow: 0px 1px 2px rgba(218,165,32,0.7);
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0px;
}

h3{
    margin-bottom: 10px;
}
p{
    margin-bottom: 5px;
}