:root {
  --font-color: #fceaff;
  --font-family: 'Nunito', sans-serif;
}

body {
  margin: 0;
  background-image: url(https://strangemaps.neocities.org/background.jpg);
  background-size: cover; /* makes it fill the screen */
  background-repeat: no-repeat;
  background-attachment: fixed; /* makes it stay while scrolling */
  background-position: center;
}

/* HEADER */
#header {
  text-align: center;
  padding: 20px;
  background: none;
}

#header img {
  max-width: 100%;
  height: auto;
}

/* NAVIGATION BAR */
#navbar {
  background-image: url('frame.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px 0;
  margin-bottom: 20px;
}

#navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

#navbar li a {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}

#navbar li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffd9f7;
}

/* CONTENT CONTAINER */
#container {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 40px;
  background-image: url('frame.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  min-height: 600px;
}

main {
  padding: 1rem;
}

/* TYPOGRAPHY */
h1 {
  font-size: 32px;
  color: #ED64F5;
}
