
#body{
    background-color: rgb(5, 12, 21);
    margin-top: 0%;
    margin-bottom: 0%;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:aliceblue;

}

a{
    color: rgb(255, 145, 240);
}

#main{
    top: 0%;
    bottom: 0%;
    min-height: 100vh;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 0;
    margin-bottom: 0;
    background-color: rgb(8, 19, 33);
}


#titulo{
    padding-top: 2%;
    text-align: center;
}

#site_todo{
    margin-left: 15%;
    margin-right: 15%;
    padding-bottom: 2%;
}

.my-image-class {
    width: auto; 
    height: 450px;
}


.sponsors-container {
  display: flex; /* Transforma o contêiner em um Flexbox */
  flex-wrap: wrap; /* Permite que os itens quebrem a linha se não houver espaço */
  justify-content: center; /* Centraliza os logos horizontalmente */
  align-items: center; /* Centraliza os logos verticalmente */
  gap: 20px; /* Adiciona um espaço entre os logos */
  margin-top: 20px;
}


.link{
    word-wrap: break-word;

}

@media (max-width: 768px) {
  .my-image-class {
    width: 95%; 
    height: auto;
    margin-left: 0%;
    margin-right: 0%;

  }

  .sponsors-container {
    justify-content: center;
  }

  #site_todo{
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 2%;
  }

  #main{
    top: 0%;
    bottom: 0%;
    min-height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    background-color: rgb(8, 19, 33);
  }
}




