body {
    font-family: sans-serif;
    margin: 100px;
    background-color: #ffffff;
  }

  textarea {
    height: 150px;
    resize: vertical;
    margin-top: 1px;
  }

  h4 {
    margin-bottom: 2px;
  }

  .titulo {
    align-items: center;
    font-weight: bold;
    justify-content: center;
    font-size: 20px;
    color: #094EA2;
    margin-top: 15px;
  }

  .titulo-resultado{
  margin-top: 40px;     
  margin-bottom: 6px;   
}

   .resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 6px;
   }


  .resultados-individuais {
   display: flex;
   flex-direction: column;
   width: 250px;  
   margin-top: 5px;
  }

   textarea {
    border-radius: 14px;
    border: 2px solid #2166b9;
    width: 60%;
    height: 50px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 14px;
  }

   .button-enviar{
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 14px;
    border: 2px solid #2166b9;
    color: #ffffff;
    background-color: #094EA2;
  }

  .button-enviar:hover {
    padding: 12px;
  }

  .campo-de-texto {
    border-radius: 14px;
    border: 2px solid #2166b9;
    width: 90%;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 40px;
    font-size: 14px;
    display: inline;
  }

  img {
     display: block;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: 60px;
     padding: 20px;
     align-items: center;
  }

  .protocols {
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 2px solid #2166b9;
    font-family: sans-serif;
    padding: 15px;
    margin-left: 15px;

  }

  .protocols:hover {
    background-color: #094EA2;
    color: #ffffff;
  }

 @media screen and (max-width: 1121px) {
  .input-row{
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 10px;
  }

  .campo-de-texto{
    width: 90%;
    margin-bottom: 0;
  }

  .button-enviar{
    width: 92%;          
  }

  .titulo-resultado{
    display: block;      
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;

  }

  .resultados {
    justify-content: center;
    width: 100%;
  }


  body{
    margin: 20px; 
  }
}


