body {
  background-color: #fffff0;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://www.ilovemove.it/1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.splash-screen img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.menu {
  display: none;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.menu img {
  max-width: 100%;
  height: auto;
}

.menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
}

.menu ul li {
  list-style: none;
  margin: 10px;
}

.menu ul li a {
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid black;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.button {
  display: block;
  width: 180px;
  height: 40px;
  background-color: #333;
  color: #fff;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  font-family: "Lucida Calligraphy", sans-serif;
}

/* Regole per schermi con larghezza massima di 767px */
@media (max-width: 992px) {
  .splash-screen {
    background-image: url("https://www.ilovemove.it/Move%20mobile.png");
    max-height: 100%;
  }
  
  .menu {
    display: none !important;
  }
  
  .menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-height: auto;
    height: 85vh;
    margin: auto;
    margin-top: 10px;
  }
  
   .menu-mobile img {
    display: flex;
    max-width: 100%; /* per far sì che l'immagine si adatti allo schermo */
    align-self: center; /* per centrare l'immagine verticalmente */
	margin-top: 5 px;
	margin-bottom: 5 px;
  }
  
  .info-button {
    width: 300px;
    height: 50px;
    border: 2px solid black;
    background-color: ivory;
    color: black;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
  }
}

/* Regole per schermi con larghezza minima di 992px */
@media (min-width: 992px) {
  .splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .splash-screen img {
    max-width: 80%;
    height: auto;
  }
  .menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fffff0;
    width: 70%;
    max-width: 700px;
    padding: 50px;
  }
  .menu img {
    max-width: 100%;
    height: auto;
  }
  
  .left {
  position: absolute;
  left: 20px;
  bottom: 50%;
  transform: translateY(50%);
}

.top {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.right {
  position: absolute;
  right: 20px;
  bottom: 50%;
  transform: translateY(50%);
}
}