body {
    font-family: 'Cousine', 'Courier New', Courier, monospace;
    background-color: #fff;
    color: #31344D;
    /* box-sizing: border-box; */
}

.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header,
.footer {
    background-color: #2C526D;
    color: #fff;
    width: 100%
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style-type: none;
}

.menu-item {
    display: block;
}

.menu-item a {
    display: block;
    padding: 2rem;
    text-decoration: none;
}

.menu-item a,
.menu-item a:visited {
    color: #fff;
}

.menu-item a:hover,
.menu-item a:focus {
    color: #fff;
    background-color: #C52928;
    text-decoration: underline;
    outline: none;
}

.menu-item a:active {
    background-color: #447C6D;
}

.logo-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 2rem;
}

.logo-img {
    max-width: calc(100vw - 4rem);
    height: auto;
    max-height: 75vh;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.copyright {
    padding: 2rem;
    display: block;
}

/* @media screen and (min-height: 900px) and (min-width: 600px) {
        .logo-img {
            max-height: 75vh;
        }
    } */