body {
  background-color: lightblue;
}
/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Page background */
body {
  background: linear-gradient(to bottom, #007BFF, #0047AB);
  color: white;
  text-align: center;
  min-height: 100vh;
}

/* Header section */
header {
  padding: 30px 20px;
}

header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2.5em;
  margin-top: 15px;
}

p {
  font-size: 1.1em;
  margin-top: 8px;
}

/* Navigation bar */
nav {
  margin: 30px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #FFD700;
}

/* Section boxes */
section {
  background: white;
  color: black;
  border-radius: 15px;
  width: 80%;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 15px;
  font-size: 0.9em;
}