
@import url('https://fonts.googleapis.com/css?family=Alex+Brush|Merienda');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: url(../img/12.jpg) no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh; /* Minimum height to fit content */
  text-align: center;
  color: #fff;
}

p {
  font-family: 'Alex Brush';
  color: #791f1f;
  font-size: 6em;
  text-shadow: 5px -8px 7px #aa3131;
}

.images {
  margin: 20px auto; /* Adjust spacing */
}

.cmbt img,
.muga img {
  width: 100%;
  max-width: 100%; /* Ensure images don't overflow */
  /* border: 3px solid aliceblue; */
  padding: 10px;
  /* background: aliceblue; */
  /* box-shadow: -20px 5px 20px rgba(0, 0, 0, 0.93); */
  border-radius: 34px;
}

.shade {
  display: none; /* Hide unnecessary background layer */
}

.card__bg__image {
  height: auto; /* Adjust height to content */
  width: 100%;
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card__bg__image img {
  object-fit: cover;
  width: 100%;
  height: 100%; /* Scale image to fill container */
}

@media (max-width: 767px) {
  p {
    font-size: 2.5em;
    text-shadow: 3px -5px 4px #aa3131;
  }

  .content {
    padding: 20px;
    min-height: auto; /* Adjust height for smaller screens */
  }

  .images .row {
    flex-direction: column; /* Stack images vertically */
  }
  img.vert-move {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  p {
    font-size: 4em;
  }

  .images {
    margin: 10px auto;
  }
}
.box {
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  border-radius: 36px;
}

.box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease; /* Optional zoom effect */
}

.box:hover img {
  transform: scale(1.1); /* Optional zoom effect on hover */
}

.overbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease; /* Smooth transition */
}

.box:hover .overbox {
  opacity: 1;
}


.vert-move {

  animation: mover 1s infinite alternate;

}

.welcome {

  font-family: Merienda;

  font-size: 3em;

  color: #fff;

}

@keyframes mover {

  0% { transform: translateY(0); }

  100% { transform: translateY(-10px); }

}

.title {
  font-size: 1.8em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2em;
  color: #ddd;
}