body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #ffffff;
    color: #000000; /* Set default text color */
    text-align: center;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensure space between logos and text */
    width: 100%;
    max-width: 1200px; /* Optional: Limit the width of the header content */
    position: relative;
    padding: 0 20px; /* Add padding to the sides */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.left-logo, .right-logo {
    max-height: 60px; /* Set a consistent size for logos */
    width: auto;
}

.left-logo {
    max-height: 60px; /* Set a consistent size for the left logo */
    width: auto;
    margin-right: auto; /* Pushes the left logo to the left */
}

.right-logo {
    max-height: 80px; /* Increase the size of the right logo */
    width: auto;
    margin-left: auto; /* Pushes the right logo to the right */
}

h1 {
    margin: 0;
    padding: 0 20px; /* Padding to prevent overlap with logos */
    color: #000000; /* Set the header text color to black */
    flex: 1;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
}
.return-home {
    margin-bottom: 20px; /* Space between button and video */
    text-align: center;
}

.btn-home {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-home:hover {
    background-color: #555;
}
.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #000;
    position: relative;
    padding: 1em;
    box-sizing: border-box; /* Ensure padding is included in the element's width */
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.custom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.video-container:hover .custom-controls {
    opacity: 1;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    margin: 0.5em; /* Adjusted margin for better spacing on smaller screens */
    cursor: pointer;
    width: 100px; /* Set a fixed width for buttons */
}

button:hover {
    background-color: #555;
}
.video-info {
    margin-top: 1em;
    padding: 1em;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
    color: #333;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

footer {
    background-color: #ffffff;
    color: #000000;
    text-align: center; /* Center the footer text */
    padding: 1em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .video-container {
        padding: 0.5em; /* Reduce padding on smaller screens */
    }

    button {
        width: 80px; /* Slightly reduce button width on mobile */
        padding: 0.4em; /* Adjust padding for smaller buttons */
    }

    header, footer {
        padding: 0.5em; /* Reduce header and footer padding on smaller screens */
    }

    main {
        padding: 0.5em; /* Reduce main padding */
    }

    .header-content {
        flex-direction: column;
    }

    .left-logo, .right-logo {
        margin: 10px 0; /* Add some space around the logos */
    }

    h1 {
        text-align: center;
        padding: 10px 0;
    }
}
