@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap");

body {
    color: #666666;
    background-color: #ffffff;
    background-position: center;
    line-height: 1.4em;
    margin: 10px;
    font-family: "Poppins", system-ui;
    font-size: large;
}

ul {
    list-style-type: none;
}

header {
    background-color: #75975e;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 200;
    font-size: 100;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

nav {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #f0f0f0;
}

.login-btn {
    background-color: #457634;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

/* Container layout for menu items to be side by side */
.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px; /* Adds spacing between menu items */
    flex-wrap: wrap;
    margin-top: 20px;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    width: 100%;
}

/* Each menu item */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.menu img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 10px;
}

.description {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Style for the video box */
.video-box {
  width: 600px;
  padding: 20px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Center the iframe inside the box */
.video-box iframe {
  display: block;
  width: 100%;
  height: 315px;
}