@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap');

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0px;
}

.content-container {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    padding-top: 24px;
    padding-right: 36px;
    padding-left: 36px;
    justify-content: space-between;
    margin-top: 20px;
}

.photo-container {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
}

.text-container {
    width: 65%;
    padding-left: 150px;
    padding-right: 150px;
    font-size: 1.5rem;
}

.photo-1,
.photo-2 {
    background-color: var(--bg-color);
    height: 80%;
    width: 80%;
    /* width: 400px;
    height: 550px; */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid var(--text-color);
}

.photo-2 {
    position: absolute;
    z-index: 2;
    transform: rotate(10deg);
}

.photo-1 .portrait-container,
.photo-2 .portrait-container {
    border: 1px solid var(--text-color);
    height: 80%;
    width: 85%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

svg {
    width: 90%;
    height: 100%;
}

.name {
    z-index: 3;
    font-size: 3cqw;
    right: 0px;
    left: 0px;
    bottom: 0px;
    top: 85%;
    margin: auto;
    width: fit-content;
    height: fit-content;
    position: absolute;
    font-family: 'Reenie Beanie', cursive;
    user-select: none;
}

.inline-anchor {
    color: var(--link-color);
}

.info-bar {
    display: flex;
    flex-direction: row;
    margin: 3px;
    height: 79px;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 4px;
    border: 0px solid var(--text-color);
    gap: 12px;
}

.info-bar>a {
    height: 100%;
}

.info-svg {
    fill: var(--text-color);
}

.info-bar>a>svg {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1093px) {
    .content-container {
        flex-direction: column-reverse;
        align-items: center;
        padding: 0px;
        gap: 48px;
        justify-content: start;
    }

    .photo-container,
    .text-container {
        width: 100%;
    }

    .photo-1,
    .photo-2 {
        background-color: var(--bg-color);
        height: 400px;
        width: 300px;
        /* width: 400px;
    height: 550px; */
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        border: 1px solid var(--text-color);
    }

    .name {
        font-size: 2rem;
    }

    .text-container {
        font-size: 1rem;
        padding: 0px;
    }

    p {
        --horizontal-padding: 12px;
        padding-right: var(--horizontal-padding);
        padding-left: var(--horizontal-padding);
    }

    .info-bar {
        justify-content: center;
    }
}