body {
      display: flex;               /* turn body into flex container */
  flex-direction: column;      /* stack items vertically */
  justify-content: center;     /* center vertically */
  align-items: center;         /* center horizontally */
  min-height: 100vh;           /* take full viewport height */
  margin: 0;                   /* remove default body margin */
  font-family: 'Inter', sans-serif;
}

.menu ul {
  list-style: none;        /* remove bullets */
  padding: 0;
  margin: 0;
  display: flex;           /* horizontal layout */
  background-color: #333;  /* dark background */
}

h2{
    font-size: 40px;
      margin-top: 7px;   
  margin-bottom: 7px

  }
h1 {
  font-weight: 700;
  color: #000000;
  font-size: 120px;
}

p {
  font-weight: 400;
  color: #000000;
  font-size: 20px;

}

.video-container {
  text-align: center; /* centers the iframe horizontally */
  margin: 20px 0;     /* optional spacing above/below */
}



