body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

h1 {
    color: #003366;
    margin-bottom: 60px;
    margin-top: -140px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: blue;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dropbtn:hover {
    background-color: rgb(66, 168, 202);
    transform: scale(1.05);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    margin-top: 0px;
    transition: opacity 0.3s ease;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown-content img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
}

.dropdown:hover .dropdown-content {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}