body {
    margin: 0;
}

h1 {
    margin: 20px;
}

/* Header */
header {
    height: 200px;
    display: inline-block;
    width: 100%;
}

#header-logo {
    width: 25%;
    height: 200px;
    float: left;
}

#header-right {
    width: 75%;
    height: 200px;
    float: right;
}

#jelmondat {
    width: 100%;
    height: 150px;
}

/* Menu Bar */

#menu-bar {
    width: 100%;
    height: 50px;
}

.menu-bar-container {
    height: 50px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
    font-size: 18px;
}

.menu-bar-element {
    height: 50px;
    width: 14%;
    float: left;
    border-right: 1px solid black;
    overflow: hidden;
}

.menu-bar-element:last-child {
    border-right: none;
}

.menu-bar-element a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
}

.menu-bar-element a:hover {
    background-color: #525151;
}

.active {
    background-color: lightblue;
}

.active a:hover{
    background-color: lightblue;
}

/* Main Page */

#page-name {
    border: 1px solid black;
    margin: 10px;
}

#content {
    margin-left: 20px;
    margin-right: 20px;
    min-height: 470px;
}

.card {
    display: inline-block;
    height: 366.84px;
    padding-bottom: 20px;
}

.card-header {
    background-color: lightgray;
    border-top: 1px solid black;
    padding: 5px 0px 5px 20px;
}

.card-content{
    display: inline-block;
    height: 300px;
}

.card-img {
    width: 33%;
    height: 300px;
    float: left;
}

.card-text {
    width: 66%;
    height: 300px;
    float: right;
    overflow: hidden;
}

.card-p {
    margin: 30px;
    margin-bottom: 0px;
}

.card-ul {
    margin-right: 50px;
    padding-left: 50px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.underline {
    font-style: italic;
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

/* Footer */
footer {
    height: 150px;
    background-color: grey;
}

.footer-col {
    width: 24%;
    margin: 0 auto;
    float: left;
    height: 150px;  
}

.footer-padding {
    padding: 20px;
    padding-right: 0px;
}

.footer-p {
    margin: 0px;
}

.footer-ul {
    list-style-type: '- ';
    margin: 8px;
    margin-left: 0px;
}

.footer-ul a{
    color: blue;
}

.footer-ul a:visited{
    color: blue;
}

#footer-4 {
    padding: 0;
    height: 150px;
    float: right;
}

#footer-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
}

#footer-button {
    border-radius: 20px;
    font-size: 14px;
    width: 100%;
    height: 100%;
}

#footer-button-a{
    height: 30%;
    width: 50%; 
}