html{
    height: 100%;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: inherit;
}

a:visited{
    all: inherit;
}

.menubutton{
    margin: 5px;
}

.ordersection{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 0 5px 0;
    background-color: silver;
    width: 100%;
}

.sectiontitles{
    font-weight: bold;
    font-size: x-large;
    border: ridge;
    border-color: gold;
    background-color: ghostwhite;
    padding: 0 10px 0 10px;
}

.wide{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: silver;
    padding: 0 5px 0 5px;
    box-sizing: border-box;
}

.loginbody{
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.logincontainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 3px solid mediumslateblue;
    width: fit-content;
    padding: 0;
    background-color: lavender;
}