
.dropdown {
    position: fixed; /* Position absolutely */
    right: 20px; /* Move it to the right side */
    top: 20px; /* Adjust the top position */
    display: inline-block;
    z-index: 9999; /* Ensure the dropdown appears in front of all other elements */
}


.dropdown-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown:hover {
    transform: rotate(45deg);
}

.dropdown-button:hover {
    background-color: #45a049;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    background-color: #f1f1f1;
    min-width: 1000px;
    max-width: 100%;
    padding: 10px;
    box-shadow: 16px 0px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Ensure the dropdown content appears in front of all other elements */
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.dropdown-content a {
    color: #45a049;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

@media (max-width: 768px) {
    .dropdown{
        margin-right: 10px;
        margin-top: 15px;
    }
  }