body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-image: url('https://raw.githubusercontent.com/HelloQoppa/HelloQoppa/main/assets/img/background.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 800px) {
  body {
    background-attachment: fixed;
    /* Para evitar problemas em dispositivos móveis */
    align-items: center;
    justify-content: center;
    /* display: flex; */
  }

  .container-home {
    position: relative;
    transform: none;
    margin-top: 250px;
    top: auto;
    left: auto;
  }

  .card {
    max-width: 100%;
    /* Garante que o card não ultrapasse a largura do dispositivo */
  }

  .icon {
    flex: 0 0 33.3333%;
    /* Cada ícone ocupa 1/3 da largura da tela */
    max-width: 33.3333%;
    /* Limite de largura máxima */
    border: #000000;
  }

  .icon i {
    font-size: 2rem;
    /* Tamanho reduzido dos ícones em telas menores */
    align-items: center;
    text-align: center;
  }

  .icon p {
    font-size: 1rem;
    /* Tamanho reduzido do texto em telas menores */
    align-items: center;
    text-align: center;
  }

  footer {
    margin-top: auto;
    margin-bottom: 0%;

  }
}


h1 {
  font-size: 62px;
  /* Ajuste o tamanho da fonte conforme necessário */
}

h2 {
  font-size: 36px;
  /* Ajuste o tamanho da fonte conforme necessário */
}

.icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.icons a {
  color: white;
  margin-right: 42px;
  /* Adiciona espaçamento entre os ícones */
}

.icon {
  text-align: center;
}

.icons i {
  font-size: 42px;
  /* Ajuste o tamanho dos ícones conforme necessário */
}

.icon p {
  margin-top: 10px;
  margin-right: 42px;
  font-size: 14px;
  color: #ffffff;
  /* Você pode ajustar a cor e o tamanho da fonte conforme necessário */
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  opacity: 40%;
  margin-top: 10%;
  padding: 10px;
}

.container-home{
  margin-top: 3%;
  margin-bottom: 50%;
}

.card {
  width: 300px;
  margin: 20px auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h2 {
  text-align: center;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.card p {
  text-align: justify;
  padding: 10px;
  font-size: 14px;
  color: #000000;
}

.container-home {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.rounded-circle {
  border-radius: 50%;
}