.title {
  text-align: center;
  margin-bottom: 2px;
}

.title h1 {
  font-size: 2.5rem;
  color: #007bff; /* Blue color (you can use any other blue color code) */
  text-shadow: -2px 2px 0 #000; /* Black shadow with x-offset -2px, y-offset 2px, and blur 0 */
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

.header {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #697366;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #515750;
}

.frame-container {
  width: 180vh;
  height: 85vh;
}

iframe {
  width: 90%;
  height: 90%;
}


.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
