body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    margin-bottom: 20px;
}

video {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
}

.video-info {
    margin: 15px 0;
    text-align: left;
}

.controls {
    margin-top: 15px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #ff0000;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #000000;
}