<style>

h1, h2, h3 {
    color: #C8C8C8;
    margin: 0;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 40px;
}

ul {
    font-size: 18px; /* Increases the text size of the list */
    line-height: 1.6; /* Adds more space between lines */
    margin-bottom: 20px; /* Adds space below the list */
}

li {
    margin-bottom: 10px; /* Adds space between list items */
}

#Sound {
    height: 414px;
    width: 252px;
}

#Sound:hover {
    background-image: url('soundon.png');
    height: 414px;
    width: 252px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Dark background for the body */
    color: #fff; /* White text for general readability */
}

.credit {
        text-align: right;
        font-size: 80%;
}

.container {
    width: 70%; /* Default width for larger screens */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding inside the container */
    font-family: Arial, sans-serif; /* Ensure font consistency */
}

/* Base tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
    color: #5CACEE;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute; 
    z-index: 1;
    bottom: 125%; 
    left: 50%; 
    transform: translateX(-50%);
    width: 400px; /* Default width for larger screens */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip.active .tooltiptext {
    visibility: visible;
    opacity: 1;
    border: 2px solid #fff;
}


.transparent {
    color: #ffffff;
    opacity: 0.75;
    background: #686868;
    border-radius: 25px;
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}


.responsive-image {
    text-align: center; 
    font-size: 80%;
}

.responsive-image img {
    width: 100%; /* Makes the image responsive, adjusting to the parent container's width */
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Limit how large the image can grow - adjust based on your needs */
    margin: auto; /* Center the image horizontally */
}

.responsive-iframe {
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%; /* Full width by default */
    max-width: 600px; /* Maximum width of the iframe */
    margin: auto; /* Center the iframe horizontally */
    padding-top: 56.25%; /* Aspect ratio of 16:9 */
    height: 0;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .tooltip .tooltiptext {
        position: fixed; 
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%);
        width: 90%; /* Adjust width for mobile visibility */
        max-height: 60vh; /* Maximum height as a percentage of the viewport height */
        min-height: 20vh; /* Ensure there is a minimum height */
        overflow-y: auto; /* Enable vertical scrolling if content overflows */
        padding: 10px; /* Ensure padding is adequate for content */
        box-sizing: border-box; /* Include padding in width and height calculations */
    }

    .container {
        width: 100%; /* Full width on smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
        box-sizing: border-box; /* Continue to include padding and border */
    }

    .transparent {
        width: 100%; /* Adjust width for mobile */
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .responsive-image img {
        max-width: 100%; /* On smaller screens, allow the image to fill the container */
    }

    .responsive-iframe {
        max-width: 100%; /* Allow the iframe to fill the container on smaller screens */
        margin: auto; /* Ensure it remains centered */
    }
}



.nav {
    width: 16%;
    color: #FFFFFF;
}

.nav a {
    color: #FFFFFF;
    text-decoration: none;
}

.nav a:hover {
    color: #C8C8C8;
}

a {
    color: #5CACEE; /* Lighter blue for links */
}


</style>