

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #DAFD00;
   
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    /* Estilos para o logotipo */
    max-width: 87%;
    height: auto;
    margin-bottom: 35px;
  }
  
  .social-icons {
    /* Estilos para os ícones das redes sociais */
    
        display: flex;
        flex-direction: column;
        margin-top: 30px;
    
  }
  
  .main-content {
    text-align: center;
    margin-top: 50px;
  }
  
  h1 {
    font-size: 2.6em;
  }
  h2 {
    font-size: 1.5em;
    margin-bottom: 77px;
  }
  h3 {
    font-size: 1.2em;
    margin-bottom: 7px;
  }
  @keyframes typing{
    from{
      width: 0;
    }

  }
  @keyframes blinking{

    50%{
      border-color: transparent;
    }
  }
  .animado{
    margin-left: 25%;
    border-right: 4px solid;
    width: 20ch;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 2s steps(20),
    blinking 0.6s infinite step-end;
    
  }

   .titulo{
   font-size: 22px;

  }
  
  .schedule {
    /* Estilos para os horários dos jogos */

        background-color: rgba(0, 0, 0, 0.966);
        color: #DAFD00;
        padding: 10px;
        text-align: center;
        border-radius: 20px;
    
  }

    @media screen and (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: center;
    }
  
    .social-icons {
      display: flex;
      flex-direction: row;
    }
   h1 {
        font-size: 2.1em;
        text-align: center;
      }
      h2{
        font-size: 18px;
      }
      h3 {
        font-size: 1em;
        text-align: center;
       
      }
      .titulo{
        font-size: 19px;
       
         }

      .logo img {
        /* Estilos para o logotipo */
        max-width: 87%;
        height: auto;
        margin-bottom: 4px;
      }
      .schedule {
        /* Estilos para os horários dos jogos */
    
            background-color: rgba(0, 0, 0, 0.966);
            color: #DAFD00;
            padding: 5px;
            text-align: center;
            border-radius: 20px;
               
      }
      .animado{
        margin-left: 6%;
        font-size: 24px;
     
      }
 
  }
  