.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.button-container button {
    cursor: pointer;
    font-size: 24px;
    height: 200px;
    margin: 0 10px;
    padding: 10px 20px;
    width: 200px;
}

.menubar {
    background-color: var(--color3);
    padding: 5px 15px;
}

.menubar button,
.menubar input,
.menubar span {
    margin-left: 2.5px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Gotta alphabetize this for Mr. Saugat */
:root {
    --color1: #E0E0E0;
    --color2: white;
    --color3: grey;
    --color4: black;
}

#question-container {
    display: none;
    margin-top: 20px;
    text-align: center;
}

body {
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

video {
    background: #000;
    border-radius: 8px;
    border: 2px solid #333;
    max-width: 400px;
    width: 100%;
}
