body {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  background-color: white;
  text-align: center;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: darkblue;
}

/* contenitore principale che contiene tutto */
.main {
  background-color: #CCC;
  width: 80%;
  margin: auto;
  padding: 5px;
  border: none;
  text-align: center;
  vertical-align: middle;
}

.logo-img {
  width: 50%;
  margin: auto;
}

/* Stile dei bottoni */
button {
  background-color: #CCC;
  float: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px;
  transition: 0.3s;
  font-size: 16px;
  width: 50px;
  height: 50px;
  color: darkblue;
  vertical-align: middle;
}

/* Dimensione immagine dei bottoni standard */
button img {
  width: 32px;
  height: 32px;
}

/* Stile dei bottoni grandi */
.button-box {
  display: flex;
  margin: auto;
  justify-content: center;
}

button.big {
  width: 250px;
  height: 200px;
}

button.big img {
  border-radius: 20%;
  width: 200px;
  height: 150px;
  box-shadow: 2px 4px #999;
}

button.big:active img {
  transform: translate(2px, 4px);
  box-shadow: 0px 0px #FFF;
}

/* Cambia sfondo dei bottoni quando passa il mouse */
button:hover {
  background-color: #EEE;
}

/* Stile del titolo della pagina */
.title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

/* Stile del nome utente */
.user {
  font-weight: bold;
  text-align: center;
  padding: 5px;
  background-color: #EEE;
}

/* Stile dell'elemento del risultato */
.item {
  border: 1px solid black;
  width: 80%;
  box-sizing: border-box;
  margin: auto;
}

/* Stile del nome indirizzo */
.indirizzo {
  font-style: italic;
  text-align: center;
  padding: 5px;
}

/* Stile del nome corso */
.corso {
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

/* Stile dell'aula */
.aula {
  font-weight: bold;
  text-align: center;
  padding: 5px;
}


/* Resize per smartphone */
@media only screen and (max-width: 1024px) {
  .main {
    width: 95%;
  }

  .logo-img {
    width: 120%;
  }

  .button-box {
    flex-direction: column;
  }
}
