/* style.css */

body,
html {
  margin: 20%;
  padding: 0;
  font-family: Arial, sans-serif;
  color: rgb(166, 207, 221);

  scroll-behavior: smooth;
  height: 100%; /* Full height */
  background-image: url("background2.png"); /* Reference to your background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the whole page */
  background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

* {
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

nav {
  color: white;
  padding: 1em 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: transparent; /* Make the nav background transparent */
}

nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000; /* Add text shadow for readability */
}

section {
  min-height: 100vh;
  padding: 50px 20px;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  nav ul li {
    display: block;
    margin: 10px 0;
  }

  section {
    padding: 50px 10px;
  }
}
