@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300&display=swap');

*{
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}
body{
    background: linear-gradient(rgb(190, 241, 250),#acdefd);
}
a{
    text-decoration: none;
    color: rgb(138, 1, 1);
}

header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color:#acdefd;
}

.principal{
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.titulo{
    margin-left: 20px;
    
}
.logo{
    display: flex;
    justify-content: center;
}
.titulo h1{
    font-family: 'DM Sans', sans-serif;
    font-size: 90px ;
}

#menu ul{
    margin-left: 100px;
    list-style-type: none;
    padding: 0;
    font-size: 20px;
    background-color: #acdefd;
}
#menu ul li{
    display: inline-block;
    justify-content: flex-end;
}
#menu ul li a{
    display: inline;
    padding: 34px;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    transition: background .5s;
}
#menu ul li a:hover{
    background-color: #ff7d83;
}


.container {
    padding: 0px;
    text-align: center;
    position: relative;
    width: 50%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}


#image {
    display: block;
    width: 100%;
    height: auto;
    
  }
  
  .overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #008CBA;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
  }
  
  .container:hover .overlay {
    bottom: 0;
    height: 100%;
  }
  
  .text {
    white-space: nowrap; 
    color: white;
    font-size: 30px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  
  h2,h3{
    padding: 20px;
  }

  p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 0px 60px 10px 60px;
    text-align: justify;
    font-size: 20px;
    line-height: 1.5;
    
  }

#sumario ul{
    padding: auto; 
    margin-left: 0px;
    list-style-type: none;
    font-size: 18px;
  }

#sumario ul{
 
    list-style-type: none;
    padding: 0 10px;
    font-size: 18.5px;
    background-color: #95d6ff;
}
#sumario ul li{
    display: inline-block;
    justify-content: flex-end;
}
#sumario ul li a{
    padding: 25px;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    transition: background .3s;
}
#sumario ul li a:hover{
    background-color: #4ed1d1;
}
  
mark {
    background-color: rgb(255, 143, 221);
    color: black;
    font-size: 18px;
  }

.diretores{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    
}

.texto{
    color: black;
    margin-left: 10%;

}

.texto p{
    font-size: 20px;
    padding-left: 0px;
    
}

.first{
    max-width: 30%;
    max-height:30%;
    float: left;
    padding: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

h2 {
    color: #333333;
}

table {
    width: 50%;
    border-collapse: collapse;
    margin: 20px auto;
    animation: fadeIn 1s ease-in-out;
}

th, td {
    border: 1px solid  #008CBA;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #acdefd;
}

div.links {
    height: 10em;
    position: relative }
div.links p {
    margin: 0;
    position: absolute;
    top: 70%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) }