html {
    height: 400%;
}

body {
    margin: 100px;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8eb;
}

.header {
    colour: black;
    *visibility: hidden;
} 

.title {
    color: orange;
    visibility: hidden;
}


nav ul {
    **background: #100;
    list-style: none;
    padding: 0;
    position: fixed;
    left: 5;
    right: 0;

}

nav ul li {
    **background: #400;
    display: inline-block;
    margin: 0 30px;
}

nav ul li a {
    color: black;
    text-decoration: none;
}

nav a:visited {
    color: black; /* Reset to default text color */
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px; /* Matches the YouTube embed width */
    margin: 0; /* Removed auto-centering */
    float: left; /* Align the video to the left side */
}

/* Aspect ratio container for the thumbnail */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

/* Thumbnail image with 100% width and height */
.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the aspect ratio without distortion */
}

/* Play button styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: url('https://cdn-icons-png.flaticon.com/512/860/860768.png') no-repeat center;
    background-size: contain;
}

/* Style for the iframe (if needed, can be kept the same as the thumbnail dimensions) */
iframe {
    width: 100%;
    height: 315px; /* 560px wide * 9/16 = 315px high */
}

.video-text-below {
    background-color: blue;
}
     