body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.content {
  display: flex;
  flex-direction: row; /* Keep row direction */
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.2); /* 20% white fill */
}

/* Swap order by putting info first */
.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 50%; /* Set width for consistent spacing */
  padding: 20px; /* Add padding around the text */
  box-sizing: border-box; /* Include padding in width calculation */
}

.content img {
  width: 50%;
  object-fit: cover;
}

.info h1 {
  margin-bottom: 0rem;
}

.info a {
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.info a:hover {
  text-decoration: underline;
}

/* Media queries for responsive adjustments */

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }

  .info {
    width: 100%; /* Full width on small screens */
    text-align: center;
  }

  .content img {
    width: 100%;
  }
}