@font-face {
  font-family: "Gill Sans";
  src: url("GillSans.ttc") format("ttc");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bree Serif", serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* IMMAGINE DI SFONDO */
.background {
  position: absolute;
  inset: 0;
  background: url("Icona-Love-Casentino-Sfondo-grigio-zoom.svg") center / cover
    no-repeat;
  opacity: 0.2;
  z-index: 1;
}

/* CARD CENTRALE */
.card {
  position: relative;
  z-index: 2;
  background: white;
  width: 450px;
  min-height: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 5px 5px 20px rgba(104, 104, 104, 0.2);
  padding: 20px;
}

/* LOGO */
.logo {
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* TESTI */
h1 {
  font-size: 2.3rem;
  margin-bottom: 50px;
  color: #373836;
  line-height: 1;
  font-weight: 400;
}

.subtitle {
  font-size: 0.9rem;
  color: #686867;
  margin-bottom: 8px;
  margin-top: 24px;
  font-family: "Gill Sans", Arial, sans-serif;
  text-transform: uppercase;
}

/* SOCIAL */
.social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social a {
  color: #e84d0e;
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.social a:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .card {
    width: 80%;
  }
}
