body {
    margin: 32px 16px;

    font-family: Bitter, serif;
    color: #080E33;
    font-size: 18px;
}

input, textarea, button {
    font-size: 18px;
    font-family: Bitter, serif;
}

h1, h2 {
    margin: 0;
}

h2 {
    font-size: 36px;
}

img {
    max-width: 100%;
}

a {
    color: #0e1087;
}

.c-social {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-social__icon + .c-social__icon {
    margin-left: 16px;
}

.c-contact-icon + .c-contact-icon {
    margin-left: 16px;
}

.c-contact-icon img {
    margin-right: 8px;
    vertical-align: middle;
}

.c-button {
    -webkit-appearance: none;

    width: 200px;
    min-height: 48px;

    border: none;
    border-radius: 4px;

    background-color: #0e1087;
    color: #fff;

    font-weight: bold;
    text-transform: uppercase;
}

.c-button:hover {
    background-color: #0C154A;
}

.c-button:active {
    background-color: #080E33;
}

.c-field-row {
    display: flex;
    flex-direction: column;
}

.c-field-row label {
    margin-bottom: 4px;
}

.c-field-row input {
    padding: 4px 8px;

    max-width: 400px;
    height: 32px;

    border: 1px solid #080E33;
    border-radius: 4px;
}

.c-field-row textarea {
    padding: 4px 8px;

    border: 1px solid #080E33;
    border-radius: 4px;
}

.c-field-row + .c-field-row {
    margin-top: 16px;
}

.c-form-message {
    margin-top: 16px;
}

.c-hidden {
    display: none;
}

p {
    line-height: 28px;
}

main {
    max-width: 800px;
    margin: auto;
}

header {
    text-align: center;
}

.t-logo {
    width: 200px;
    height: 200px;
}

.t-about {
    display: flex;
    margin-top: 64px;
}

.t-about > div {
    flex-shrink: 1;
    width: 50%;
}

.t-about > div + div {
    margin-left: 32px;
}

.t-contact {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #080E33;
}

.t-contact__header {
    display: flex;
    align-items: baseline;
}

.t-contact__header h2 {
    margin-right: 64px;
}


@media only screen and (max-width : 640px) {
    .t-about {
        display: block;
    }

    .t-about > div {
        width: auto;
    }

    .t-about > div + div {
        margin-top: 16px;
        margin-left: 0;
    }

    .t-contact__header {
        display: block;
    }

    .t-contact__header > * + * {
        margin-top: 16px;
    }
}
