:root {
  --colore-sfondo-principale: #ded9d2;
  --colore-sfondo-scheda: #b29a88;
  --colore-testo: #000000;
  color-scheme: light;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  background-color: var(--colore-sfondo-principale);
  font-family: 'Playfair Display SC', serif;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 20px;
  z-index: 10000;
  background-color: var(--colore-testo);
  color: var(--colore-sfondo-principale);
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}
