@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background: url('../images/background.jpg') no-repeat center/cover;
  color: white;
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  padding: 15px;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  text-shadow: 0 0 10px white;
}


.container {
  max-width: 800px;
  margin: 60px auto;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 20px; 
  text-align: center;
}


h1 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  text-shadow: 2px 2px 10px black; 
}

h2 {
  font-family: "Oswald", sans-serif;
  margin-top: 30px;
}


.details-list {
  list-style: disc;
  text-align: left;
  margin-top: 20px;
}


button {
  margin-top: 20px;
  padding: 20px 40px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(to right, #ff7e5f, #feb47b); 
  color: white;
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.3s;
}

button:hover {
  transform: scale(1.1);
}