.masthead {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; /* Aligns the text at the bottom */
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); /* Optional: Adds a dark overlay for better text visibility */
}

.mastheadText {
  margin-top: 10%; /* Adjusts vertical position */
  color: #fff; /* Adjust text color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Optional: Adds text shadow for better visibility */
}

.bigtitle {
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  font-size: 4rem;
  margin-bottom: 1rem;
}
