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

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: color(display-p3 0.987 0.97 0.94);
  overflow: hidden; /* Prevent scrolling */
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.info-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  margin-top: 100px; /* To give space for the sticky logo */
}

.logo {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  z-index: 10; /* Ensure it's on top of other content */
}

.content {
  margin-bottom: 30px;
}

.info-paragraph {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0;
  transition: opacity 1s ease;
}

.start-btn {
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  background-color: #3f3f41;
  color: white;
  border: none;
  border-radius: 25px;
}

.video-page {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.video-js {
  width: 100%;
  height: auto;
  background: color(display-p3 0.987 0.97 0.94);
}

.play-pause-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 18px;
  background-color: #3f3f41;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.video-js .vjs-control-bar {
  display: none;
}
