
  .image-container {
    text-align: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 20px; /* Para criar espaço entre as imagens e o botão */
  }
  
  .image-container img {
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: lightgray;
    width: 300px;
    height: 300px;
  }
  
  .btn {
    background-color: hsl(190deg 74.83% 69.34%);
    border: none;
    padding: 10px 20px;
    margin: 20px;
    color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  .btn:hover {
    opacity: 0.9;
  }
  
  .btn {
      display: block;
      margin: 0 auto; /* Centraliza o botão */
    
  }
  