*{
    box-sizing: border-box;
}
.content {
    max-width: 800px;
    margin: auto;
}
body{
    text-align: left;
    background-color: #d2d2cf;
    color: #333333;
}

.lefty{
    text-align: left;
}
.centrist{
    text-align: center;
}
.dropper{
    margin-top: 50px;
}
.hidden{
    display: none;
}
a {
    text-decoration: none;
}
.navbar {
    background-color: #333333;
    display: flex;
    align-items: center;
    overflow: hidden;
    height:  50px;
}
.navbar a {
    color: #d2d2cf;
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.dropdown {
    float: left;
    overflow: hidden;
}
.dropdown .drop-button {
    font-size: 16px;
    border: none;
    outline: none;
    color: #d2d2cf;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
.navbar a:hover, .dropdown:hover .drop-button {
    background-color: #272727;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    min-width: 160px;
    box-shadow:  0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    float: none;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #272727;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.row{
    display: flex;
}
.column{
    flex: 50%;
    padding: 10px;
}
