* {
    box-sizing: border-box;
    background-color: #001f34;
    color: #eeeeee;
    font-family: "News Cycle", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}



a.button {
    border: solid 1px white;
    padding: 1rem;
    text-decoration: none;
}

a.button:hover {
    background-color: #004c80;
}

.item100 {
    padding: 3rem;
    flex: 100%;
    line-height: 3rem;
}

.title {
    font-size: 3rem;
    line-height: 4rem;
    font-family: "Merriweather", sans-serif;

}

.logo {
    padding: 0px;
}

.item50 {
    padding: 2rem;
    flex: 50%;
    text-align: center;
    line-height: 3rem;
}

img#logo {
    width: 30rem;
}

hr {
    width: 60%;
    border: solid 1px #004c80;
}

ul {
    text-align: left;
}

li::marker {
    color: #004c80;
}

div.button {
    padding: 2em;
}

i {
    font-size: 2.1em;
}

details {
    font-size: 1em;
}

b {
    font-weight: 700;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {

    .item100,
    .item50 {
        flex: 100%;
        padding: 1rem;
        font-size: 1.2rem;
        line-height: 2rem;
    }

    div.button {
        padding: 2em;
    }

    .title {
        font-size: 2rem;
        line-height: 3rem;
    }

    details {
        font-size: 0.7em;
    }

    img#logo {
        width: 20rem;
    }
}