body #navbar ul a:nth-child(1) {
    background-color: aqua;
}

body #content {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
}

body #content img {
    width: 30%;
    box-shadow: none;
}

body #content span {
    text-align: center;
    line-height: 25px;
    font-size: smaller;
}

body #header {
    flex-direction: row;
}

body #header #head_section {
    margin-left: auto;
    margin-right: auto;
    transform: translate(100px);
}

body #header button {
    background-color: tan;
    width: 120px;
    height: 30px;
    margin: 20px;
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 100ms;
    grid-area: 1/1/2/2;
    margin-top: 100px;
    font-size: 20px;
    padding: 10px;
}

body #header button span {
    margin-left: auto;
    margin-right: auto;
}

body #header button img {
    width: 15px;
    margin: 10px;
}

body #header button:hover {
    background-color: aqua;
    transform: scale(105%);
}

body #header #login {
    width: 200px;
    height: 200px;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

body #header #login #dropdown {
    grid-area: 1/1/2/2;
    background-color: rgb(2, 111, 161);
    transform: translate(-20px,80%);
    height: 200px;
    border-radius: 20px;
    border: 2px solid black;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body #header #login #dropdown a {
    width: 89%;
    text-align: center;
    margin: 10px;
    padding: 10px;
    transition-duration: 100ms;
    cursor: pointer;
}

body #header #login #dropdown a:hover {
    background-color: tan;
}

.dropgone{}