/* Basic reset for margin/padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevent scrolling if image fits viewport */
}

/* Background image styling */
body {
    background-image: url('202307tenn.jpg'); /* Replace with your image file path or URL */
    background-size: cover; /* Ensures the image covers the whole screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    min-height: 100vh; /* Ensures the background covers the full vertical height */
    color: white; /* Make text readable on potentially dark backgrounds */
    font-family: sans-serif;
}

/* Dropdown menu positioning container */
.dropdown-container {
    position: fixed; /* Positions the menu relative to the viewport */
    top: 20px; /* Adjust distance from the top */
    right: 20px; /* Adjust distance from the right */
    position: relative; /* Needed to position the dropdown content correctly below the button */
    display: inline-block;
}

/* Dropdown button styling */
.dropbtn {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; /* Ensures the menu appears above other elements */
    right: 0; /* Aligns the dropdown content to the right edge of the button/container */
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown-container:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-container:hover .dropbtn {
    background-color: #3e8e41;
}

/* Example styling for the main content to show it's behind the menu */
.content {
    text-align: center;
    padding-top: 150px;
}