body {
  background: linear-gradient(20deg, #021B79, #000000, #091129);
  color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: Arial, sans-serif;
}

.logo {
    height: 50px;
}

.container {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Increased min size */
  gap: 20px;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}

.card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Maintains aspect ratio */
  transition: transform 0.3s ease, z-index 0.3s ease; /* Smooth transition */
  z-index: 1; /* Default z-index */
}

.card:hover {
  transform: scale(1.15); /* Increases size by 5% on hover */
  z-index: 10; /* Bring to front on hover */
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.card-title {
  font-size: 1.2em;
  margin: 0;
  font-weight: bold;
}

.card-subtitle {
  font-size: 0.8em;
  color: #aaa;
}

.card:hover .card-content {
  opacity: 1;
}

.summer-text {
  color: white;
  font-size: 80px;
  font-weight: bold;
  margin: 30px;
  padding: 0;
  display: flex;
  justify-content: center;
}

.summm {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.summme {
  color: white;
  font-size: 10px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
