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: 50%;
  margin: auto;
  padding: 5px;
  border: none;
  text-align: center;
  vertical-align: middle;
}

.logo-img {
  width: 50%;
  margin: auto;
}

/* Resize per smartphone */
@media only screen and (max-width: 1024px) {
  .main {
    width: 95%;
  }
  .logo-img {
    width: 120%;
  }
}

/* Stile dei bottoni */
button {
  background-color: #CCC;
  float: center;
  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;
}

/* 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;
}
