body{
  background-color: black;
  margin: 0;
  padding: 0;
}

* {
    box-sizing: border-box;
  }

#cima {
  background: #f50909;
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
  
  .container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: top;
    text-align: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    
  }
  
  h1 {
    font-size: 35px;
    margin-bottom: 16px;
  }

  h1 img {
      width: 90%;
  }

  #number{
    color: #f50909;
    font-weight: bold;
  }

  #pessoas {
      padding: 20px;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  h3{
    font-size: 1.3rem;
    color: black;
  }

  #atendimento {
    color: #fff;
  }
  
  button {
    background-color: #229a00;
    align-items: center;
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2rem;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 28px;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
  }

