* {
    padding: 0;
    margin: 0;
}

.lora-regular {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.shippori-mincho-b1-regular {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
}

.dotgothic16-regular {
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html{
    width: 100%;
    height: 100%;
}

body {
    margin: 0 5dvw;
    height: 100%;
    background: ghostwhite;
    color: darkslategray;
    font-family: "Lora", "Shippori Mincho B1", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header{
    padding: 2dvh 0;
    display: flex;
    justify-content: center;
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer{
    padding: 2dvh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

body > footer{
    position: sticky;
    top: 100vh;
}

p:not(.plain) {
    margin-bottom: 1rem;
    text-indent: 1rem;
}

.plain {
    margin-bottom: 0.5rem;
}

a {
    color: darkslategray;
    text-decoration: none;
}

ul:not(.navmenu) {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.navmenu {
    padding-bottom: 2dvh;
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
}

.profile {
    padding: 2dvh;
    display: flex;
}
.profile img {
    aspect-ratio: 0.75;
    width: 108px;
    height: 144px;
}

.profile-text {
    display: flex;
    flex-direction: column;
}

.embed-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.embed-container {
    padding: 0 3dvw;
    margin: 0 auto;
    max-width: 90%;
}

.embed-container > * + * {
    margin-top: 5dvh;
}