
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(135deg, #ece9e6, #ffffff);
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  background: url("SEO/green-348346_1920.jpg") no-repeat center center fixed;
background-size: cover;

}


h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}


nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

nav li {
  text-align: center;
}


nav a {
  display: block;
  padding: 1rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
    color: #132944;
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

nav a:hover {
  background: #267f1d;
  color: rgb(255, 255, 255);
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

header a {
  position: absolute;   
  top: 20px;            
  left: 20px;           
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

header a:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
