* {
    font-family: "Helvetica Neue", "Arial", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    height: 100vh;
    width: 100vw;
}

.main {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
}

.main .portrait-left {
    flex: 1 1 auto;
    height: 100%;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.main .portrait-left img {
    height: 80%;
    max-height: 800px;
}

.main .portrait-left img:hover {
    transform: scale(1.01);
}

.main .portrait-bottom {
    flex: 1 1 auto;
    height: 100%;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.main .portrait-bottom img {
    height: 350px;
    overflow: hidden;
}

.main .portrait-bottom img:hover {
    transform: scale(1.01);
}

.main .text-box-wrapper {
    height: 100%;
    flex: 2 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
}

.main .text-box {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
    padding-left: 12px;
    padding-right: 12px;
}

.main .text-box h1, h3, p {
    padding: 0;
    margin: 0;
    max-width: 380px;
}

.main .text-box p {
    line-height: 125%;
}

.main .text-box a {
    font-size: 10px;
    font-style: italic;
    color: lightgray;
    text-decoration: none;
}

.main .text-box a:visited {
    color: lightgray;
    text-decoration: none;
}

.main .icons {
    width: 100%;
    margin-top: 24px;
}

.main .icons ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 64px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main .icons ul li img {
    flex: 1;
    width: 32px;
    height: 32px;
}

.main .icons ul li img:hover {
    transform: scale(1.1);
}