body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background:url(green-348346_1920.jpg);
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;
  gap: 1.5rem; 
  padding: 2rem;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
 text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);

}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
 text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);

}

header a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

header a:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

article {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  max-width: 700px;
  border-bottom: 2px solid #ffffff; 
  margin-bottom: 2rem; 
  border-radius: 30px;
}

p {
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);

}


ul {
  list-style-type: disc;
  margin: 1rem auto;
  padding: 0;
  text-align: left;
  max-width: 500px;
}

ul li {
  margin: 0.5rem 0;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
}


