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

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

    .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
    }

    .overlay h2  {
      font-size: 2.5rem;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
      margin-bottom: 20px;
	-webkit-text-stroke: 1px black; /* black border */
    }

    .unmute-btn {
      font-size: 2rem;
      background: transparent;
      border: none;
      color: white;
      cursor: pointer;
      transition: transform 0.2s;
text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    }

    .unmute-btn:hover {
      transform: scale(1.2);
    }

@keyframes bounceL {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

@keyframes bounceR {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.arrow-left{
  animation: bounceR 1s infinite;
}

.arrow-right{
  animation: bounceL 1s infinite;
}

.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.arrow-left,
.arrow-right {
font-size: 1.5rem;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
  width: 0;
  height: 0;
  margin: 0 20px;
	margin-top: -30px;
}

.arrow-right{
padding-right:20px;
}

        .btn {
            background-color: #355d98;
            color: white;
            padding: 15px 30px;
            margin: 10px;
            text-decoration: none;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: inline-block;
        }
        .btn:hover {
            background-color: darkblue;
        }