body {
    background-image: url(../assets/img/about.jpg);
    background-size: cover;
    background-position: center;
    background-position-y: 10%;
    background-attachment: fixed;
    flex-direction: column;
    justify-content: flex-start;
}

body::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(var(--basic-black-rgb), 0.75);
    transition: ease 0.5s;
}

body.dark::after {
    background-color: rgba(var(--basic-black-rgb), 0.85);
}

#page-title {
    border-bottom: none;
    background-color: rgba(0, 0, 0, 0);
}

#page-title.small {
    background-color: var(--akai-1100);
}

#page-title>h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1rem 7.5%;
    transition: ease 0.75s;
    mix-blend-mode: normal;
}

#page-title>h1.small {
    font-size: 1.5rem;
}

#about-top {
    width: 85%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 1;
    color: var(--basic-white);
}

#name-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#name {
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

#name>p:nth-child(1) {
    font-size: 3rem;
}

#name>p:nth-child(2) {
    margin-left: 1rem;
    position: relative;
    bottom: 0.75rem;
    font-size: 1.25rem;
}

#job {
    width: 100%;
    padding: 1px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--akai-600);
}

#job>p {
    margin: 0 1rem;
    font-size: 0.75rem;
    color: var(--basic-white);
}

#contents-wrapper {
    margin-top: 0.6rem;
    margin-bottom: 11rem;
}

#contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    z-index: 1;
    color: var(--basic-white);
}

#about-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

#akai-icon {
    width: 60%;
    margin-top: 2rem;
    border-radius: 50%;
    outline: 1px solid rgba(var(--basic-white-rgb), 0.5);
    outline-offset: 0.5rem;
}

#akai-icon>img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

@media (orientation: landscape) {
    #contents {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    #about-container {
        width: 70%;
    }
    #about-container>div:nth-child(1)>h2 {
        margin-top: 0;
    }
    #akai-icon {
        width: 25%;
        max-width: 20rem;
        margin-top: 0;
    }
}

.item {
    width: 100%;
}

.item>p{
    margin: 4px 1rem 0 1rem;
    overflow: auto;
    white-space: wrap;
}

.item>.link {
    margin: 4px 1rem 0 1rem;
    overflow: auto;
    white-space: wrap;
    text-decoration: underline;
    color: #82e4cf;
}

.item>.link::after {
    font-family: "material symbols outlined";
    content: "north_east";
}

.item>h3 {
    margin: 8px 1rem 0 1rem;
}

.item>h2 {
    width: 100%;
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(var(--basic-white-rgb), 0.5);
    padding: 0 1rem;
    font-size: 1.5rem;
    box-sizing: border-box;
}

#x-logo,
#yt-logo {
    fill: #FFF;
    height: 1.75rem;
    min-height: 20px;
}

#yt-logo>path {
    width: 100%;
}