/* body styles */
body {
  background-image: url(images/valentinesday.jpg);
  background-size: cover;
  font-family: 'Futura', sans-serif;
  color: #black;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* header styles */
header {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 36px;
  text-align: center;
  color: #fff; /* Header text color */
}

/* navigation styles */
nav {
  display: flex;
  justify-content: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 20px;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background on hover */
}

/* section styles */
section {
  padding: 20px;
}

/* top list styles */
.top-list {
  margin: 20px auto;
  max-width: 600px;
}

.top-list h3 {
  font-size: 24px;
}

.top-list ol {
  list-style-type: decimal;
  font-size: 20px;
  padding-left: 20px;
  margin: 0;
}

/* footer styles */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  padding: 20px;
}

footer p {
  color: #fff; /* Footer text color */
}

/* Media queries */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 28px;
  }

  .top-list h3 {
    font-size: 20px;
  }

  .top-list ol {
    font-size: 18px;
  }
}

