/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: defaults,not ie 11
*/

.max-content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.space-evenly {
    display: flex;
    justify-content: space-evenly;
}
.multi-row-list > li {
    margin-bottom: 1rem;
}

.overview {
    display: grid;
    justify-content: center;
}
.overview-title {
    justify-self: center;
    font-size: 2rem;
}
.overview-list  {
    margin-top: 0;
}
.overview-list table {
    border-spacing: 0;
}
.overview-list td {
    padding: 0.3rem 0 0 0;
}

.profile {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    justify-content: center;
}
.profile-img {
    width: 250px;
    max-width: 100%;
    --margin: 40px;
    margin: var(--margin) var(--margin) 0 var(--margin);
}
.profile-body li {
    line-height: 1.3rem;
}


@media (max-width: 800px) {
    .profile {
        display: block;
    }
    .profile-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .profile-body {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .profile-body ul {
        display: inline-block;
        text-align: left;
        padding-left: 1.6rem;
    }
    .profile-body table {
        margin: 0;
    }
}

@media (max-width: 700px) {
    .overview-list ul {
        padding-left: 1rem;
    }
}