body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    text-align: center;
    margin-top: 50px;
}

h1 {
    color: #333;
}

.button {
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin: 2px 1px;
  transition-duration: 0.4s;
  cursor: pointer;
  width: 300px;
  height: 80px;
}

.buttonpiccolo {
  border: none;
  color: white;
  padding: 4px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 2px 1px;
  transition-duration: 0.4s;
  cursor: pointer;
  width: 100px;
}

.buttongrande {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block; /* Rende il bottone un elemento a blocco */
    font-size: 30px;
    margin: 10px 0; /* Aggiunge un po' di margine sopra e sotto */
    transition-duration: 0.4s;
    cursor: pointer;
    width: 100%; /* Occupata tutta la larghezza del contenitore */
    box-sizing: border-box; /* Assicura che padding e bordo siano inclusi nella larghezza */
}

.buttometa {
    font-size: 20px;
    padding: 15px;
    margin: 10px;
    width: 50vw; /* 50% della viewport width per garantire metà schermo */
    max-width: 50%; /* Limita la larghezza massima al 50% del contenitore */
    border: none;
    cursor: pointer;
    box-sizing: border-box; /* Assicura che padding e bordo siano inclusi nella larghezza */
}

.buttonlargo {
  border: none;
  color: white;
  padding: 4px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 2px 1px;
  transition-duration: 0.4s;
  cursor: pointer;
  width: 1000px;
}

.largo {
  width: 300px;
  }

.medio {
  width: 150px;
}


.piccolo {
  width: 50px;
}  

.buttonverde {
  background-color: white; 
  color: black; 
  border: 2px solid #04AA6D;
}


.buttonverde:hover {
  background-color: #04AA6D;
  color: white;
}


.buttonblu {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
}

.buttonblu:hover {
  background-color: #008CBA;
  color: white;
}

.buttonrosso {
  background-color: white; 
  color: black; 
  border: 2px solid #e54827;
}

.buttonrosso:hover {
  background-color: #e54827;
  color: white;
}

.buttonviola {
  background-color: white; 
  color: black; 
  border: 2px solid #9727e5;
}

.buttonviola:hover {
  background-color: #9727e5;
  color: white;
}

.buttongiallo {
  background-color: white; 
  color: black; 
  border: 2px solid #FFFF00;
}

.buttongiallo:hover {
  background-color: #FFFF00;
  color: black;
}

.buttonarancio {
  background-color: white; 
  color: black; 
  border: 2px solid #FFA500;
}

.buttonarancio:hover {
  background-color: #FFA500;
  color: black;
}

.hidden-button {
  display: none!important;
}
.visible-button {
  display: block!important;
}

/* Create 2 equal columns that floats next to each other */
.column {
  float: left;
  width: 49%;
  padding: 5px;
  height: 250px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
