:root {
    background-color: #E3E4E6;
}

html {
    font-family: Helvetica, Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0192D1;
    padding: 10px 30px;
    font-size: 20px;
    width: 100%;
    height: 110px;
    box-sizing: border-box;
}
.misl-logo {
    width: 120px;
    max-height: 90px;
    height: auto;
    object-fit: contain;
    display: block;
}

.title {
    font-size: 1.5em;
    padding: 0;
}

a {
    font-family: Helvetica, Arial, sans-serif;
}

a:visited {
    color: black;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Neucha', 'sans-serif';
    color:#ffffff;
    flex: 1;
}

nav a {
    margin-right: 15px;
}

nav a::before {
    content: '|';
    position: absolute;
    left: -5px;
}

#content {
    margin: 20px;
}

body {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0;
}

footer {
    display: flex;
    align-items: center;
    background-color: #7ccde3;
    padding: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
}