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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  /* background: linear-gradient(90deg, #6b6bff, #a4508b); */
  padding: 20px 0;
  text-align: center;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: rgb(34, 34, 34);
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffe600; /* Colore accattivante al passaggio del mouse */
}

section {
  align-content: center;
  height: 100svh;
  padding: 50px 20px;
  text-align: center;
  margin: 20px 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

.hero {
  height: 90svh;
  background-image: url("https://images.unsplash.com/photo-1733076939837-eb7463329163?q=80&w=2970&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  align-content: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6b6bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #a4508b; /* Colore al passaggio del mouse */
}

footer {
  text-align: center;
  padding: 20px 0;
  background-color: #333;
  color: white;
}
