/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  background: #a0ff4d;
  color: #000;
  font-family: "Impact", sans-serif;
}

/* MENU */
.menu {
  position: fixed;
  top: 20px;
  right: 24px;
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.menu a {
  color: #000;
  text-decoration: none;
  opacity: 0.6;
}

.menu a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* HOME */
.home {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.manifesto {
  max-width: 680px;
  margin-left: 60px;
  font-size: 18px;
  line-height: 1.55;
}

/* PAGINE INTERNE */
.content {
  padding: 100px 80px;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
}

 /* ===== GALLERY ===== */

/* ===== GALLERY FIX FINALE ===== */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: 200px;
  height: auto;
}



