body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.logo {
  margin-top: 30px;
}

.logo img {
  width: 150px;
  height: auto;
}

.text-box {
  margin: 40px auto;
  font-size: 24px;
}

.image-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.image-links a img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-links a img:hover {
  transform: scale(1.05);
}
