@import url('https://fonts.googleapis.com/css2?family=Kalam&family=Poppins&display=swap');

body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-image {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-video {
    width: 100%;
    min-height: 100%;
    z-index: -1;
    position: absolute;
    display: block;
    object-fit: cover;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}

.content-container {
    margin: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    background: #e8e8e8;
    margin-bottom: 15px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.primaryButton {
    background: #023320;
    color: white;
    padding: 20px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.5s;
    font-size: 16px;
}
.primaryButton:hover {
    background: #e6fff5;
    color: black;
    transition: background 0.5s, color 1s;
}