body {
    margin: 0;
    font-family: 'Permanent Marker', cursive;
    color: #FF715B;
}
h1,h2 {
    font-weight: normal;
}
.wrapper {
    width: 100vw;
    height: 100vh;
    background: #4C5454;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 2px #FF715B;
}
.portrait {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.portrait::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF715B;
    opacity: 0.7;
    mix-blend-mode: lighten;
}
.links {
    list-style-type: none;
    display: flex;
    padding: 0;
}
.links li {
    padding: 4px 10px;
}
.links li a {
    color: white;
    font-size: 20px;
}