body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: black;
  color: white;
  padding: 1em 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 1em;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.parallax {
  background-image: url('parallax.jpg');
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

#facts, #gallery, #contact {
  padding: 2em;
  text-align: center;
}

.highlight {
  background-color: yellow;
}

.background-image {
  position: relative;

  background-image: url('download.png');
  background-size: cover;
  color: white;
  padding: 1em;
  width: 200px;
  height: 200px;
  border-radius: 61% 39% 52% 48% / 44% 59% 41% 56%;
}

#scrolling-text {
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.comment-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.comment-box textarea {
  width: 100%;
  height: 200px;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
