/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Noto Sans TC";
  margin: 8px 0;
  
  background-image: url("https://i.gyazo.com/4a66cc08269be5da99a87df46c02a52b.jpg");
  background-size: 100%;
  background-attachment: fixed;
  background-position: bottom;
}

main {
  width: 992px;
  margin: 0 auto;
}

.box-compo {
  display: flex;
	height: 10rem;
	background-color: green;
	padding: 1rem;
	gap: 1rem;
	font-family: sans-serif;
}

.box-compo > :nth-child(1) { order: 1; }
.box-compo > :nth-child(2) { order: 3; }
.box-compo > :nth-child(3) { order: 2; flex: 1 }

.singleton {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10rem;
	height: 10rem;
	font-size: 8rem;
	color: red;
	-webkit-text-stroke-width: 0.2rem;
  -webkit-text-stroke-color: white;
	/* text-shadow: 0.2rem 0.3rem  white; */
	border: solid 0.2rem white;
}

.list-vertical {
	writing-mode: vertical-rl;
	border: solid 0.2rem white;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.list-item {
	font-size: 3rem;
	text-align-last: justify;
	color: red;
	font-weight: bold;
	-webkit-text-stroke-width: 0.1rem;
	-webkit-text-stroke-color: white;
	padding: 1rem 0;
}

/* Headings */
h1 {
  display: none;
}

h2 {
	text-align: center;
}

h2 > span {
	display: inline-block;
	line-height: calc(4rem - 1px * 2);
	height: 4rem;
	width: 4rem;
	border: solid 1px red;
	border-radius: 2.5rem;
	box-sizing: border-box;
}

h2 > span:not(:first-child) {
	margin-left: 0.5rem;
}

/* Welcome */
.welcome {
	display: flex;
	height: 24rem;
	background: rgb(0, 140, 134);

	gap: 1rem;
	font-family: sans-serif;
}

.welcome > :nth-child(1) { order: 1; }
.welcome > :nth-child(2) { order: 3; }
.welcome > :nth-child(3) { order: 2; flex: 1 }

.welcome-left, .welcome-right {
	writing-mode: vertical-rl;
	text-align-last: justify;
	font-size: 4rem;
	font-family: serif;
	background: black;
	border: dotted 0.5rem yellow;
	padding: 0.5rem;
}

.welcome-left {
	color: blue;
}

.welcome-right {
	color: red;
}

.welcome-top {
	color: yellow;
	font-size: 6rem;
	text-align: center;
	font-family: serif;
	font-weight: bold;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: red;
	text-shadow: 0.4rem 0.4rem  black;
}

.image-center {
  display: block; 
}
 
.marquee {
  height: 100%;
}
 
/* Symbol */
.symbol-area {
	background: rgb(0, 140, 134);
	display: flex;
	justify-content: center;
	padding: 2rem 0 0;
}

.symbol-outer {
	width: 12rem;
	height: 12rem;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 0.5rem white;
	border-radius: 50%;
	box-sizing: border-box;
}

.symbol-round {
	height: 11rem;
	width: 11rem;
	border: solid 0.5rem rgb(0, 140, 134);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 8rem;
	background-color: white;
	color: red;
	font-family: serif;
	font-weight: bold;
	box-sizing: border-box;
}

/* Albums */
.albums {
  display: grid;
  grid-template-columns: repeat(6, 165px);
}

.albums > a {
  height: 166px;
}

/* Menu */
.menu-area {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.menu {
  width: 400px;
  padding: 1rem 0 2rem;
  border: dashed 0.25rem red;
  border-radius: 1rem;
  background-color: white;
}


/* Lists */
dl {
	display: flex;
	justify-content: center;
	font-size: 2rem;
	margin: 0;
}

dt {
	flex-basis: 12rem;
	color: red;
	text-align-last: justify;
}

dd {
	flex-basis: 4rem;
	text-align: right;
	color: blue;
}

/* Others */
.textarea {
  width: 18rem;  
}