body {
    /*background-color: rgb(215, 237, 215);*/
    background-color: rgb(225, 234, 222);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the body takes up the full viewport height */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the container takes up the full viewport height */
}

.video-info {
    display: flex; /* Use flexbox for the .video-info container */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    margin-top: 20px; /* Adjust margin as needed */
}

/* Style to display buttons inline */
form {
    display: inline;
}
