body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('gal.gif') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}
header {
    text-align: center;
}
h1 {
    font-size: 70px;
    color: rgb(136, 225, 234);
    font-family: CURLZ MT;
    font-weight: bolder;
    text-shadow: 1px 1px 2px rgb(4, 4, 67), 0 0 1em rgb(238, 252, 255), 0 0 0.2em rgb(225, 249, 104);
}
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1800px;
    margin: 20px auto;
}

h2 {
    justify-content: center;
    text-align: center;
    font-size: 28px;
    font-style: italic;
    font-family: segoe script;
    text-shadow: rgb(195, 244, 248) 1px 0 10px;
}
.box {
    background-color: rgba(0, 0, 0, 0.6);
    color: rgb(100, 215, 247);
    width: 65%;
    margin: 15px;
    padding: 20px;
    text-shadow: 1px 1px 2px rgb(4, 4, 67), 0 0 1em rgb(238, 252, 255), 0 0 0.2em rgb(225, 249, 104);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.7), 0 0 25px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease;
}
.box:hover {
    transform: scale(1.05);
}
.box h2 {
    color: rgb(249, 247, 113);
}
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #020a7a76;
    color: white;
}
@media(max-width: 768px) {
    .box {
        width: 90%;
    }
}


/* Dropdown Container Styling */
.dropdown {
    position: absolute;
    top: 20px;
    left: 20px;
}

.dropdown-btn {
    font-size: 30px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
