header {
    text-align: center; /* Center the image */
    padding: 20px 0; /* Add padding to the top and bottom of the header */
}

img {
    max-width: 100%; /* Make sure the image is responsive */
}
.video-container {
    margin: 0 auto; /* Center the content horizontally */
    display: block; /* Ensure the element is displayed as a block-level element */
    text-align: center; /* Center the content within the block */
}

table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    
    padding: 8px;
    text-align: center;
}
img {
    max-width: 100%;
    height: auto;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, #ff8a00, #da1b60, #8e2de2);
    display: block; /* Add this line to prevent overflow */
}

.menu {
    display: none;
    background: #333;
    padding: 10px;
    position: absolute;
    top: 40px; /* Adjust the top position as needed */
    left: 0;
    width: 100%;
}

.menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px;
}

.menu-icon {
    display: block;
    cursor: pointer;
    font-size: 24px;
}

.menu:target {
    display: block;
}

