html {
    background-color: lightgoldenrodyellow;
    color: #333333;
}
div.menu {
    font-size: 3ex;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}
div.bodyDiv {
    text-align: center;
}
div.startpageDiv {
    width: 100%;
    max-width: 700px;

}
div.dashboardDiv {
    text-align: center;
}
div.faq {
    text-align: justify;
}
.userdb {
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    border-collapse: collapse;
    text-align: left;
    padding-left: 4px;
    padding-right: 4px;
}
.userdbmid {
    text-align: center !important;
}

div.flashWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.bodyWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 20px;
}
div.title_logo {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.menu_loggedin {
    width: 100%;
    max-width: 700px;
    text-align: right;
}
div.flashmessages {
    padding: 5px 12px;
    border: 3px solid red;
    max-width: 400px;
}
div.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
}
a {
    color: black;
}
a:hover {
    color: indianred;
}
a:active {
    color: darkred;
}
.button_link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
    color: black;
}
input {
    margin: 4px;
}
input[type=submit] {
    background-color: #333;
    border: none;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}
input[type=submit]:hover {
    background-color: #111;
}
input[type=submit]:active {
    background-color: #111;
}
input[type=password], input[type=text], input[type=number], input[type=file], input[type=username] {
    background-color: #333;
    border: 2px double white;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin: 4px 2px;
}
input[type=checkbox] {
    cursor: pointer;
    height: 19px;
    width: 19px;
}
a.edit_button {
    color: white;
    background-color: #333;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    display: block;
}
a.edit_button_noblock {
    color: white;
    background-color: #333;
    text-align: center;
    padding: 9px 20px;
    text-decoration: none;
    border: none;
}
a.link_button {
    color: white;
    background-color: #686868;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    display: block;
}
a.edit_button2in {
    display: inline-block;
    margin: 5px;
    padding: 14px 24px;
    font-size: 3ex;
    background-color: darkseagreen;
    white-space: nowrap;
}
a.edit_button2out {
    display: inline-block;
    margin: 5px;
    padding: 14px 24px;
    font-size: 3ex;
    background-color: indianred;
    white-space: nowrap;
}
a.edit_button:hover {
    background-color: #111;
}
a.edit_button:active {
    background-color: #111;
}
a.link_button:hover {
    background-color: #404040;
}
a.link_button:active {
    background-color: #404040;
}
ul.menu_hor {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
}
li.menu_ele {
    float: left;
    border-right: 1px solid lightgoldenrodyellow;
}
li.menu_ele:last-child {
    border: none;
    float: right;
}
li.menu_ele:first-child {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 1px;
    background-color: #111;
}

a.menu_button {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
a.menu_button:hover {
   background-color: #111;
}
a.menu_button:active {
   background-color: #111;
}
.logo {
    padding-right: 10px;
     width: 50px;
}
 @media screen and (max-width: 890px) {
     .title {
         display: none;
     }
     .logo {
         padding-right: 0px;
     }
 }
@media screen and (max-width: 500px) {
    li.menu_ele {
        text-align: center;
        float: none;
        border-right: none;
    }
    li.menu_ele:last-child {
        float: none;
    }
    ul.menu_hor {
        position: relative;
    }
    div.menu {
        padding-bottom: 0px;
    }
    .title {
         display: initial;
     }
     .logo {
         padding-right: 10px;
     }
}