.about-me-headline {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: -30px;
}

.about-me {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
    margin-bottom: 40px;
}

.about-left,
.about-right {
    width: 50%;
}

.about-left {
    margin-top: -28px;
}

.about-right img {
    width: 650px;
    height: 650px;
}

.about-portrait {
    width: 650px;
    height: 650px;
    position: relative;
    display: inline-block;
}

.about-portrait::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid black;
    opacity: 0;
    transform: translate(20px, 20px);
    pointer-events: none;
}

.about-portrait:hover::after {
    opacity: 1;
}

.about-me p {
    font-size: 22px;
    text-align: left;
    line-height: 120%;
    margin-top: 25px;
}

.about-information {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
}

.about-information img {
    width: 36px;
    margin-top: 22px;
}

.button-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 700px) {
    .about-me p {
        font-size: 20px;
    }

    .about-portrait {
        width: 98%;
        height: 98%;
    }
    
    .about-portrait img,
    .about-right img {
        width: 100%;
        height: 100%;
    }

    .about-portrait::after {
        transform: translate(12px, 12px);
    }
}