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

html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #ff7e5f, #feb47b);
  color: #000000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  z-index: 2;
}

header a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
}

main {
  padding-top: 60px;
  padding: 60px;
  max-width: 960px;
  margin: auto;
}

main h1 {
  font-family: 'Shrikhand', cursive;
  font-size: 4rem;
  margin-bottom: 30px;
  margin: 30px;
  text-align: center;
}

main p {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 5px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

video.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step .text {
  flex: 1; 
}

.step .image {
  flex: 1;
}

.step img {
  max-width: 100%;
  height: auto;
  display: block;
}

.step.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .step,
  .step.reverse {
    flex-direction: column;
  }
}

.block-image {
  width: 80%; 
  max-width: 500px; 
  height: auto; 
  display: block; 
  margin: 0 auto;
}

.main-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

.start-button {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.inline-button {
  display: inline-block; 
  padding: 6px 12px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
  cursor: pointer;
}

.inline-button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  position: fixed;
  top: 20px;
  left: 20px;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: white;
  transition: 0.3s;
}

.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.open div:nth-child(2) {
  opacity: 0;
}

.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

.menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 220px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 60px 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease;
  z-index: 1000;
}

.menu.open {
  left: 0;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.menu a:hover {
  text-decoration: underline;
}

.start-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.logo {
  height: 4rem;
  width: auto;
  display: block;
  margin: 0 auto;
  
}
