body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.container {
    width: 300px;
    height: 400px;
    margin: 20px auto;
    border: 2px solid #000;
    background-image: url("https://iili.io/2AwLbHl.gif");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dropdown-button {
    width: 60%; /* Adjust width as needed */
    margin: 10px auto;
    padding: 5px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    border: 1px dashed;
    cursor: pointer;
    text-align: center;
    border-radius: 20px; /* Optional: rounded corners */
}

.dropdown-button:hover {
    background-color: #000;
    color: #fff;
        border: 1px dashed #fff;
    box-shadow: 0 0 10px black; /* Creates a blue outer glow */
    
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 60%; /* Match button width */
    background: #fff;
    border: 1px dashed;
    border-radius: 20px; /* Optional: rounded corners */
    display: none; /* Hidden by default */
    position: absolute;
    top: calc(5% + 30px); /* Offset from the button */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    overflow: scroll;
    height: 200px;
}

.dropdown-menu li a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: #000;
    border: 1px dashed;
    color: #fff;
    box-shadow: 0 0 10px black; /* Creates a blue outer glow */
    border-radius: 20px; /* Optional: rounded corners */
}
