body {
  font-family: Arial, sans-serif;
  text-align: center;
  min-height: 100vh;
    margin: 0;
    width: 100vw
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    height: auto;
}
.pictograma {
  width: 300px;
  height: 300px;
  margin: 10px;
  cursor: pointer;
  border: 2px solid #007bff;
  border-radius: 5px;
}
.pictograma:hover {
  border-color: #0056b3;
}

footer {
text-align: center;
padding: 10px;
border-top: solid 1px #ccc;
}

h1{
  text-align: center;
padding: 10px;
border-bottom: solid 1px #ccc;
}