* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100vh;
  overflow: hidden;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.section {
  position: relative;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: top;
}

.section h1 {
  position: absolute;
  color: white;
  font-size: 3rem;
  font-family: "bebas-neue-regular";
  letter-spacing: 0.1rem;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.breathing-image {
  animation: breathe 1s ease-out;
}

/* Keyframes for the breathing effect */
@keyframes breathe {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.15); /* Slight scale-up */
  }
  100% {
    transform: scale(1);
  }
}

.flicker {
  animation: flicker 0.1s infinite alternate;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.9;
  }
}
