/* Brandon Grotesque Light – Assicurati di avere il file .woff2 nella cartella */
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('fonts/BrandonGrotesque-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

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

body {
  background: url('img/BG.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Brandon Grotesque', sans-serif;
  color: white;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*
.overlay {
  width: 100%;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}
*/
  
h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.3s;
  font-weight: 300;
}

nav a:hover {
  opacity: 0.6;
}
