body {
  background-image: url("https://gifdb.com/images/high/pixelated-star-background-e09dbw6zvuyp420b.webp");
  background-repeat: repeat;
  background-size: auto;
  color: black;
  font-family: Verdana;
}

.container {
  max-width: 900px;
  background-color: rgb(45, 72, 88);
  margin: auto;
  border-radius: 20px;
  box-sizing: border-box;
}

.header {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.header img {
  width: 100%;
  height: 200px; /* Set a fixed height */
  display: block;
  object-fit: none; /* This allows us to control which part of the image is shown */
  object-position: 20% 85%; /* Adjust to change visible area */
  overflow: hidden;
}

.maintext {
  padding: 20px;
}

h1 {
  color: white;
}

p {
  color: white;
}

h2 {
  color: white;
}

ul {
  color: white;
}

ul a {
  color: lightblue;
  text-decoration: underline;
}

ul a:hover {
  color: white;
}

ul a:visited {
  color: #87ceeb;
}

.links-section {
  padding: 20px;
  background-color: rgba(35, 62, 78, 0.8);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.links-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.link-item {
  background-color: rgb(45, 72, 88);
  color: white;
  text-decoration: none;
  padding: 30px 40px;
  border-radius: 15px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  font-weight: bold;
  text-align: center;
  font-family: Verdana;
  font-size: 18px;
  min-width: 150px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.link-item:hover {
  background-color: rgb(65, 92, 108);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  font-size: 19px;
}