* {
    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;
}

.btn {
    margin: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40dvw;
	height: 4rem;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	transition: 0.6s;
}

.btn a:hover {
	filter: invert(100%);
}