/* Sfondo del corpo */
body {
  text-align: center;
  background-color: #010E1B;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rimuovi il testo predefinito dei link */
a {
  text-decoration: none;
  color: #11C63D;
}

/* Stilizza il testo "Sviluppato da Jesgran" */
.developer {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 18px;
}

.developer a:hover {
  color: #193b51;
}

/* Container con i pulsanti */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 80%;
  height: auto; /* Permette di ridimensionare il container */
}

/* Wrapper per centralizzare i contenuti */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Stilizza i pulsanti */
.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #1B2732;
  color: #11C63D;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s;
  width: 100%;
  height: 100%;
}

.btn:hover {
  background-color: #193b51;
}

.btn strong {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}

.description {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}

/* Media query per schermi più piccoli */
@media (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    width: 100%;
    height: 100%;
  }

  .btn {
    width: 100%;
    padding: 20px;
  }
}
