/*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{
    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;
}
h1{
    font-size: 40px;
    margin-bottom: 50px;
    margin-top: 40px;
    text-align: center;
}
h2, h3{
    text-shadow: 0px 1px 2px rgba(133, 130, 125, 0.7);
    text-transform: uppercase;
}
h2, h3, h4, h5{
    text-align: center;
    padding-bottom: 10px;
}
h3{
    margin-top: 20px;
}
h4{
    padding-top: 10px;
}

table{
    margin: auto;
    color: rgb(106, 110, 109);
    border-collapse: collapse; /* CSS2 */
    background: #ffffff;
    width: 100%;
    width: 350px;
    margin-top: 5px;
    margin-bottom: 15px;
}
table td{
    text-align: right;
    border: 1px solid rgb(116, 199, 171);
    text-align: center;
    width: 100px;
}
table th{
    text-align: left;
    border: 1px solid rgb(116, 199, 171);
    text-align: center;
}
.imagem-agenda-google{
    margin: 0 auto;
}
.agenda-google{
    margin-left: 31%;
}