body #header #login #dropdown a:nth-child(1) {
    background-color: tan;
}

body #header {
    flex-direction: row;
}

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

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: flex;
    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;
}

body #content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body #content form {
    margin-top: none;
    display: flex;
    flex-direction: column;
}

body #content form input {
    margin: 10px;
    width: 500px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 2px solid black;
    border-radius: 10px;
}

input:focus {
    outline: none;
}

body #content #login_options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

body #content #login_options #log_in {
    background-color: rgb(3, 100, 180);
    display: flex;
    width: 150px;
    height: 25px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 2px solid black;
    transition-duration: 100ms;
    cursor: pointer;
    margin: 20px;
}

body #content #login_options #log_in:hover {
    transform: scale(105%);
}

body #content #login_options img {
    width: 500px;
    margin: 20px;
}

body #content #login_options #sign_up {
    display: flex;
    align-items: center;
}

body #content #login_options #sign_up span:nth-child(2) {
    background-color: rgb(3, 100, 180);
    display: flex;
    width: 150px;
    height: 25px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 2px solid black;
    transition-duration: 100ms;
    cursor: pointer;
    margin: 10px;
}

body #content #login_options #sign_up span:nth-child(2):hover {
    transform: scale(105%);
}

.dropgone{}