body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  overflow: hidden;
}

.section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(to bottom, #f9f9f9, #e8e8e8);
  position: relative;
}

h1, h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

p {
  font-size: 2rem;
  margin-bottom: 10px;
}

.video-placeholder iframe {
  width: 1000px;
  height: 400px;
}

.navigation {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
}

.navigation button {
  background: #666;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.navigation button:hover {
  background: #444;
}

.section:nth-child(odd) {
  background: linear-gradient(to bottom, #ffffff, #e8f5ff);
}

.section:nth-child(even) {
  background: linear-gradient(to bottom, #fef8e7, #ffe4e4);
}

pre {
  font-size: 2rem; /* Suurem font */
  background-color: #f9f9f9; /* Pehme taust */
  padding: 20px; /* Lisab ruumi servade ümber */
  border-radius: 10px; /* Ümarad nurgad */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Kerget vari */
  max-width: 80%; /* Laiuse piirang */
  margin: 20px auto; /* Keskendab ploki */
  white-space: pre-wrap; /* Reavahetuste korrektne kuvamine */
  text-align: center; /* Teksti keskjoondamine */
}

.image-placeholder {
  width: 600px; /* Set the container width */
  height: 300px; /* Set the container height */
  overflow: hidden; /* Ensures content outside the box is hidden */
}

.image-placeholder img {
  width: 100%; /* Makes the image fit the width of the container */
  height: 100%; /* Makes the image fit the height of the container */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  border-radius: 10px; /* Optional: Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
}

