@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
    background-color: #9867C5;
}

img {
    max-width: 100%;
}

h1 {
    margin: auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #1f1f1f;
    padding: 0 0 4px 0;
}
p {
    margin: auto;
    font-size: large;
    font-family: "Segoe UI", sans-serif;
    color: #1f1f1f;
}

a {
    color: #9867C5;
    font-size: large;
    font-family: "Segoe UI";
}

b {
    color: #9867C5;
}

br {
    display: block;
    margin: 4px 0;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 45%;
    height: 45%;
}

i {
    color: #FAFAFA;
    opacity: 50%;
}

.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    row-gap: 32px;
    margin: auto;
    padding: 5%;
    background-color: #1f1f1f;
    border-radius: 10pt;
}

.content {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    row-gap: 16px;
}

.sub-section {
    width: 30%;
    background-color: #FAFAFA;
    border-radius: 10pt;
    color: #1f1f1f;
}

.caption {
    margin: 5%;
}

.frame {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    font-size: large;
    font-family: "Segoe UI";
    height: 110%;
}

.poster {
    height: calc(10/11 * 100%);
}

.reverse {
    flex-wrap: wrap-reverse;
}

.dev-logo {
    max-height: 100%;
    scale: 60%;
}

#dev-content {
    aspect-ratio: 4/1;
}

#logo {
    max-width: 36%;
    background-color: #1f1f1f;
    border: solid 4pt #1f1f1f;
    border-radius: 10pt;
    margin-right: 5%;
}

#profile {
    display: flex;
    align-items: center;
}

#images-content {
    aspect-ratio: 2/1;
}

#more {
    display: block;
    text-align: center;
}

#more > :is(h1,p) {
    color: #FAFAFA;
    width: 100%;
}

#more img {
    max-width: 128px;
    padding-top: 16px;
}

@media only screen and (max-width: 1080px) {
    .content {
        width: 100%;
    }
    .sub-section {
        width: 100%;
    }
    iframe {
        width: 100%;
    }

    i {
        display: none;
    }

    .poster {
        height: 100%;
    }

    .frame {
        height: 100%;
    }
}