body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #162237;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

h1 {
  color: #f15f24;
  margin-top: 20px;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 640px;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  margin: 20px 0;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 4px solid #86dabd;
  border-radius: 8px;
}
