body {
  text-align: center;
  padding: 150px;
  padding-top: 0 !important;
  font: 20px Helvetica, sans-serif;
  color: #333;
}

h1 {
  font-size: 50px;
}

article {
  display: block;
  text-align: left;
  width: 650px;
  margin: 0 auto;
}

a {
  color: #dc8100;
  text-decoration: none;

  &:hover {
    color: #333;
    text-decoration: none;
  }
}

body {
    background-color: #DDA92C;
}

@font-face {
  font-family: 'Ribes';
  src: url('assets/fonts/Ribes/Ribes-Regular.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/Archivo/Archivo-Variable.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 1rem;
  padding: 2rem;
}

.logo-container img {
  max-width: 400px;
  /* Dimensione fissa massima per desktop */
  width: 100%;
}

.text-center {
  font-size: 1.25rem;
  /* Dimensione base più piccola */
  color: black;
  font-family: 'Archivo', sans-serif;
  text-align: center;
  margin: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.75rem;
}

.social-icons a {
  color: black;
  text-decoration: none;
  font-size: 1.75rem;
  /* Dimensione icone più piccola */
}

.social-links a {
  color: black;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-size: 1.25rem;
  /* Dimensione testo link più piccola */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Media queries per schermi grandi */
@media screen and (min-width: 1920px) {
  .logo-container img {
      max-width: 500px;
  }

  .text-center {
      font-size: 1.5rem;
  }

  .social-links a {
      font-size: 1.5rem;
  }

  .social-icons a {
      font-size: 2rem;
  }
}

/* Media queries per tablet */
@media screen and (max-width: 768px) {
  .logo-container img {
      width: 80%;
  }

  .text-center {
      font-size: 1.3rem;
  }
}

/* Media queries per smartphone */
@media screen and (max-width: 480px) {
  .logo-container {
      gap: 0.5rem;
  }

  .logo-container img {
      width: 85%;
  }

  .text-center {
      font-size: 1.1rem;
  }

  .social-links {
      gap: 0.3rem;
  }

  .social-links a {
      font-size: 0.9rem;
  }

  .social-icons {
      gap: 1.5rem;
  }

  .social-icons a {
      font-size: 1.75rem;
  }
}

/* Media queries specifiche per iPhone e dispositivi simili */
@media screen and (max-width: 390px) {
  .logo-container img {
      width: 90%;
  }

  .text-center {
      font-size: 1rem;
  }
}