/*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: auto;
    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;
}
.curso{
    justify-content: center;
    margin-bottom: 35px;  
    margin-right: 9%;
   
}
.curso h2{
    text-align: center;
}
.curso-flex{
    display: flex;
    margin-top: 20px;
    
    
}

.cursos-info{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cursos-info p{
    width: 350px;
    text-align: justify;
    margin-bottom: 10px;
}

table{
    color: rgb(90, 112, 90);
    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);
}
table th{
    text-align: left;
    border: 1px solid rgb(116, 199, 171);
}
.botao__tabela{
    margin-top: 10px;
    border: none;
    width: 140px;
    height: 25px;
    background-color: rgb(116, 199, 171);
    border-radius: 5px;
    transition: 300ms;
}
.botao__tabela a{
    color: white;
    font-size: 15px;
}

.curso-imagens{
    display: flex;
    align-items: center;
}
.curso-img{
    align-items: center;
    width: auto;
    height: auto;
}   
