body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    text-align: left;
    background-color: #f8f8f8;
}

.page {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
}

.content {
    display: grid;
    grid-template-columns: 50%  50%;
    background-color: #fff;
    grid-template-areas: "left-side right-side";
}

@media only screen and (max-width: 770px) {
    .content {
        grid-template-areas: "right-side right-side"
                             "left-side left-side";
    }
    }

.content .image {
    grid-area: left-side;
}

.content .data {
    grid-area: right-side;
}

.content .image img {
    width: 100%;
    height: 100%;
}

.page .data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em 2em;
}

.data-content-header {
    font-weight: 600;
    line-height: 1.2;
    color: #eb3738;
    font-size: 3.5em;
}

.data .data-header {
    padding: 2em 0;
}

.data .data-header img {
    width: 185px;
    height: auto;
}

.data-links {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.btn {
    text-decoration: none;
    padding: 1em;
    font-size: 1.2em;
    border: 0.1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.btn-primary {
    font-size: 1.6em;
    color: #fff;
    background-color: #1aaeb7;
    border-color: #1aaeb7;
    font-weight: 600;
}

.btn-primary:hover {
    color: #fff;
    background-color: #158e96;
    border-color: #14848a;
}

.btn-secondary {
    font-size: 1.6em;
    background-color: #fff;
    color: #1aaeb7;
    border: 1px solid rgba(0, 0, 0, .125);
}

.btn-secondary:hover {
    color: #158b92;
    background-color: #f4fbfb;
}

.footer {
    margin-top: 2em;
    border: 1px solid #ebebeb;
    display: flex;
    flex-direction: row;
    column-gap: 1em;
}

.nav-link {
    text-decoration: none;
    color: #333;
    display: block;
    text-align: center;
    padding: 0.5em 1em;
    font-size: 1.4em;
}

.nav-link:hover {
    background-color: #f2f2f2;
    color: #666;
}

.nav-link .nav-img {
    height: 1.4em;
    width: 8em;
}