html, body {
    margin: 0;
    height: 100%;
}

.banner {
    width: 100%;
    height: 20px;
    background-color: #c51230;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.header .logo{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10%;
}

.header .logo img{
    width: 200px;
}

.header #title {
    display: flex;
    align-items: center;
    margin-right: 10%;
    font-family: "Catamaran";
    font-size: 45px;
    font-weight: 200;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-evenly;
}

li a {
    display: block;
    color: #c51230;
    text-align: center;
    font-family: "Open Sans";
    padding: 14px 16px;
    text-decoration: underline solid transparent;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    text-decoration: underline #c51230;
    text-decoration-thickness: 10px;
    transition: 1s ease;
}