:root {
	--color-purple: #8c7188;
	--color-blue: #555b72;
	--color-red: #d97c70;
}

body {
	font-size: 16px;
	font-family: 'Lora', serif;
	color: var(--color-blue);
	margin: 0;
	padding: 0;
	background-image: url(ritsu_bg.jpg);
	background-position: top center;
	background-repeat: repeat-x;
	background-color: #eadcdb;
	text-align: center;
}

#top {
	width: 100%;
	height: 900px;
	background-image: url(ritsu.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	z-index: 0;
}

#nav {
	position: absolute;
	top: 540px;
	width: 100%;
}

#nav a {
	display: inline-block;
	margin: 0 2px;
	padding: 2px 5px;
	background-color: #fff;
	text-transform: uppercase;
	font-size: 11px;

}
#nav a:hover {
	background-color: var(--color-purple);
	color: #fff;
	opacity: .6;
}
#nav a:last-child {
	margin-right: 188px;
}

#main {
	position: relative;
	z-index: 1;
	width: 800px;
	margin-top: 640px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
#footer {
	margin: 50px auto 0;
	padding: 30px 40px;
	background-color: #fff;
	background-color: rgba(255,255,255,.4);
	max-width: 820px;
	font-size: 13px;
}

h1 {
	color: var(--color-red);
	text-align: right;
	font-family: 'Beth Ellen', cursive;
	margin: .5em;
	line-height: 1.5;
}
h2 {
	text-transform: uppercase;
	margin: -20px 20px 20px 0;
	text-align: right;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2px;
}

i, em {
	color: var(--color-purple);
}
b, strong {
	font-weight: 600;
}
ul {
	list-style: none;
}
ul li {
	margin-bottom: 8px;
}
ul li::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background-color: #3e4346;
	width: 26px;
	height: 1px;
	margin-left: -20px;
	background-color: var(--color-purple);
}

a {
	text-decoration: none;
	color: var(--color-red);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
a:hover {
	text-decoration: none;
}

p a {box-shadow: inset 0 -2px 0 #fdfaf9; line-height: 19px; display: inline-block; text-indent: 0;}
p a:hover {box-shadow: inset 0 -18px 0 #fff;}

li a {
	background-color: rgba(255,255,255,.3);
}
li a:hover {background-color: #fff;}


.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 20px;
}
.card {
	background-color: #fff;
	display: flex;
	align-items: center;
	width: 100%;
}
.album {
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 30px;
}
.album::before {
	display: block;
	content: "";
	background-color: var(--color-red);
	clip-path: polygon(0 0, 0 100%, 100% 0);
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.album img {
	display: block;
	position: relative;
	right: -10px;
	bottom: -10px;
	margin-bottom: 10px;
}
.desc {
	font-size: 13px;
}
.desc h4 {
	margin: 0 0 2px 0;
	font-style: italic;
	font-size: 15px;
}
.desc span {
	text-transform: uppercase;
	font-size: 11px;
	color: var(--color-purple);
}

blockquote {
	margin: 15px 130px;
	text-align: center;
	font-size: 22px;
	text-transform: none;
	font-style: italic;
}
blockquote i {
	white-space: nowrap;
	text-transform: uppercase;
	box-shadow: inset 0 -16px 0 rgba(255,255,255,.3);
}
blockquote p a {
	line-height: 24px;
}

.codes {
	text-align: center;
}

.codes img {
	border: 6px solid #fff;
}
.codes img:hover {
	border-color: var(--color-red);
}