.content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position:  center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.content .content_middle{
    margin: 0 auto;
    max-width: 900px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

/** header **/
.content_middle header{
    display: flex;
    flex-flow: column wrap;
    align-items: center;

}


.content_middle header h1{
    margin: 10px 0px;
    color: #64aec8;
    text-align: bottom;

}

/** media_social **/
.media_social{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}
.media_social a svg:hover path{
    fill: red;
}
.media_social a + a{
    margin: 10px;
}

/** nav menu **/
nav ul{
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    margin-top: 10px;
}


@media(min-width:520px){
  nav ul a li{
    min-width: 100px;
  }
}
@media(max-width:520px){
  nav ul a li{
    max-width: 260px;
    min-width: 220px;
  }  
}

nav ul a li{
    margin: 12.5px 0px;
    background-color: #9ad76a;
    height: 40px;
    list-style: none;
    color: var(--button_color_text);
    font-family: 'Barlow';
    font-weight: 400;
    border-radius: 5px;
    border-top: 3px solid #5cb03b;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2em;
}

nav ul a:hover li{
    text-decoration: underline;
    color: white;
}


nav ul a li span{
  position: absolute;
  top: 20px;
  right: 10px;
}


.blink {
  animation: blink 1s steps(1, end) infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.div_organizacao {
  margin: 5px;
}

.content_middle  div{
  text-align: center;
  margin-bottom: 20px;
  
}

.content_middle h3 {
  margin-bottom: 10px;
  margin-top: 20px;
}


.content_middle p {
  margin: 5px 0px;
}

.content_middle a{
  font-weight: normal;
}

.content_middle .description {
  text-align: center;
  margin: 10px 0px;
}