/* style.css */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0; /* Un grigio più chiaro per il contrasto */
}

header {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center; /* Centra il testo all'interno dell'intestazione */
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin-right: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
}

h1,
h2,
h3 {
  color: #333;
}

section {
  padding: 2rem;
  margin: 20px;
  background-color: white;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: white;
}

h1,
p {
  text-align: center;
  font-size: 35px;
}

.logocontainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.imagecontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.imagecontainer > img {
  width: 48%;
  margin: 0;
  max-width: 100%;
}

img {
  border: 2px solid #000;
}

#logo {
  height: auto;
  max-width: 800px;
  border: 2px solid #000;
}

h2 {
  text-align: center;
  font-size: 50px;
}

ul,
li {
  font-size: 35px;
}

a {
  font-size: 35px;
  color: rgb(37, 0, 245);
  text-decoration: underline;
}

h3 {
  text-align: center;
  font-size: 50px;
}

@media (max-width: 768px) {
  /* Per dispositivi mobili e tablet */
  h1 {
    font-size: 24px;
    text-align: center;
  }

  .image {
    width: 100%;
    margin: 10px 0;
  }

  .location-link {
    font-size: 14px;
  }

  #logo {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  /* Per schermi più piccoli (es. smartphone) */
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  #logo {
    max-width: 90%;
  }

  .image {
    width: 100%;
  }

  .location-link {
    font-size: 12px;
  }
}