/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fef6f0;
  color: #333;
}

header {
  background-color: #ff7f2a;
  padding: 1rem;
  text-align: center;
  color: white;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.menu li {
  margin: 0;
}

.menu a {
  text-decoration: none;
  color: white;
  background-color: #888888;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color: #666666;
}

main {
  padding: 2rem;
  text-align: center;
}

footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
  bottom: 0;
  width: 100%;
}

.video-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.video-item iframe {
  border: 2px solid #e55d00;
  border-radius: 8px;
}

.button {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background-color: #888888;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.3s;
      margin-top: 0.5rem;
    }

    .button:hover {
      background-color: #666666;
    }

    .divider {
      width: 90%;
      height: 4px;
      background-color: orange;
      margin: 2rem auto;
      border-radius: 2px;
    }
    
.video-grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
      margin-top: 2rem;
    }

    .video-item {
      width: 100%;
      max-width: 720px;
      text-align: center;
    }

    .video-item a.button {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background-color: #888888;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.3s;
      margin-top: 0.5rem;
    }

    .video-item a.button:hover {
      background-color: #666666;
    }


@media (max-width: 600px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }
}
