/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    background-color: #000;
    padding: 15px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Video container */
.video-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

/* Individual video container */
.video {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
}

/* Video styling */
.video-player {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Controls styling */
.controls {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: white;
    display: flex;
    gap: 10px;
}

button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
