* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppons', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 2px 100px;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

body {
    background-color: #2E8B57;
    min-height: 100%;
}
.logo {
    color: #2E8B57;
    font-size: 1.7em;
    user-select: none;
}

nav {
    display: flex;
    align-items: center; /* Align items to the center */
}

nav .x {
    display: flex;
    align-items: center; /* Align items to the center */
}

nav .x a {
    position: relative;
    font-size: 0.9em;
    color: #2E8B57;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

nav .x a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #2E8B57;
    transform: scaleX(0);
    transition: transform .5s;
    border-radius: 5px;
}

nav .x a:hover:after {
    transform: scaleX(1);
}

.dropdown {
    display: flex;
    align-items: center; /* Align items to the center */
}

.navigation .loginButtonNav {
    width: 87px;
    height: 35px;
    background: transparent;
    border: 2px solid #2E8B57;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    color: #2E8B57;
    font-weight: 500;
    margin-left: 40px;
    transition: 1s;
}

.navigation .loginButtonNav:hover {
    background: #2E8B57;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    outline: none;
    border-radius: 6px;
}