:root {
    color-scheme: light dark;
    --black-text: #181818;
    --black-text-dark: #F0F0F0;
    --white: #FFFFFF;
    --white-dark: #181818;
    --grey-text: #A9A9A9;
    --grey-text-dark: #696969;
}

body {
    background-color: light-dark(var(--white), var(--white-dark));
}

.content {
    margin: 10px 15px 0;

}

.header {
    margin: 0 0 10px;
}

.profile {
    width: 25vw;
    min-width: 400px;
    /* background-color: bisque; */
}

@media (min-width: 0) and (max-width: 479.98px) {
    .profile {
        width: 100%;
        min-width: 0;
    }
}

.profile-table div:first-child {
    /* padding-bottom: 1px; */
}

.profile p:last-child {
    margin-bottom: 0;
}

.profile-table {
    display: table;
    color: light-dark(var(--black-text), var(--black-text-dark));
    margin-bottom: 40px;
}

@media (min-width: 0) and (max-width: 479.98px) {
    .profile-table {
        margin-bottom: 35px;
    }
}

.profile-row {
    display: table-row;
}

.profile-cell-1,
.profile-cell-2 {
    display: table-cell;
}

.profile-cell-1 {
    width: 85px;
}

.footer {
    font-size: 12px;
    color: light-dark(var(--grey-text), var(--grey-text-dark));
    display: flex;
    margin: 0 15px 0;
    padding-top: 40px;
    padding-bottom: 15px;
}

@media (min-width: 0) and (max-width: 479.98px) {
    .footer {
        font-size: 11px;
        padding-top: 35px;
    }
}

.footer-item-1 {
    flex: 1 1 auto;
}

.footer-item-2 {
    margin-right: 15px;
}

.footer a {
    color: light-dark(var(--grey-text), var(--grey-text-dark));
}

.footer a:hover {
    color: light-dark(var(--black-text), var(--black-text-dark));
}


body,
h1 {
    /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
    font-family: "Inter", sans-serif;
    color: light-dark(var(--black-text), var(--black-text-dark));
}

body {
    font-size: 13px;
    line-height: 1.4em;
    font-weight: 400;
    /* letter-spacing: 0.005em; */
}

a {
    color: light-dark(var(--black-text), var(--black-text-dark));
    transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

a:hover {
    color: var(--grey-text);
    text-decoration: none;
}

h1 {
    font-size: 5em;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
}

@media (min-width: 0) and (max-width: 479.98px) {
    h1 {
        font-size: 4em;
    }
}