div#wrap {
  width: auto;
  margin: auto;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

div#logo {
  margin: 40px auto;
  text-align: center;
}

div#menu {
  display: flex;
  flex-wrap: wrap;
  height: 120px;
  margin: 40px auto;
  justify-content: center;
}

div.botao {
  display: flex;
  width: 100px;
  height: 100px;
  margin: auto 30px;
  text-align: center;
  cursor: pointer;
  border: 1px dashed black;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

div.botao:hover {
  background-color: #A6CAE1;
  border: 1px solid #A6CAE1;
  border-radius: 10px;
  color : white;
  font-weight: bold;
}

h3, p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

#contador {
  font-weight: bolder;
}