body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #87CEEB; /* Light Sky Blue */
}
.container {
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.video-gallery {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout for smaller screens */
    gap: 20px;
    padding: 20px;
}

.video-gallery video {
    width: 100%;
    height: auto;
}

@media (min-width: 600px) { /* Adjust this breakpoint as needed */
    .video-gallery {
        grid-template-columns: repeat(2, 1fr); /* Two columns for larger screens */
    }
}

h1, h2, p, .button {
    text-align: center;
}
.button {
    font-weight: bold;
    color: #0056b3;
    background-color: #e7e7e7;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}
#videoPlayer {
    display: block;
    max-width: 100%;
    margin: 20px auto;
}
ul, li {
    list-style-type: none;
    padding: 0;
    margin-bottom: 10px;
}
a {
    color: #0056b3;
}
a:hover {
    text-decoration: underline;
}
.theme-description {
    font-family: 'Comic Sans MS', cursive;
    color: #ff00ff;
}
body {
    background-color: #FFE5B4; /* Soft Peach */
}