body {
    background-color: #2E2E2E;
    color: #D4AF37;
    font-family: 'Courier New', Courier, monospace;
}

header {
    text-align: center;
    padding: 50px;
}

nav {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

nav a {
    margin: 0 15px;
    padding: 10px 20px;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #5C4033;
    border: 2px solid #D4AF37;
    border-radius: 10px;
}

nav a:hover {
    background-color: #D4AF37;
    color: #2E2E2E;
}

.content {
    text-align: center;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #5C4033;
    color: #FFFFFF;
    border-top: 2px solid #D4AF37;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
}

