@font-face {
  font-family: font1;
  src: url(../fonts/font1.ttf);
}

@font-face {
  font-family: font2;
  src: url(../fonts/font2.ttf);
}

@font-face {
  font-family: font3;
  src: url(../fonts/font3.otf);
}

body{
  height: 100vh;
  width: 100vw;
  padding : 0px;
  padding-top: 0px;
  margin : 0px;
  display : flex;
  
}

#background{
	position: absolute;
	height: 100vh;
  	width: 100vw;
  	z-index: -3;
  	opacity: 0.7;

}

#member{
	position: relative;
	z-index: 10;
	left:29px;
	bottom:10px;

}

#wrap{
	border: solid 1px black;
	width:1000px;
	height:50px;
}

#return{
	height:70px;
	min-width: 190px;
	border-radius: 5px;
	text-align: center;
	
	position: absolute;
	top:15px;
	left:15px;
	z-index: 200;
	
}

#return a{
	font-family: font3;
	font-size: 20px;
	font-weight: bold;
	color: black;
	text-decoration-line: none;
	text-shadow: 3px 3px rgb(213,172,215);
}

#return a:hover{
 cursor: pointer;
 color:purple;
}

#title{
	height:70px;
	min-width: 190px;
	text-align: center;
	
	position: absolute;
	left:400px;
}

#title p{
	font-family: font2;
	font-size: 60px;
	color:rgb(213,172,215);
	font-weight: bold;
	text-shadow: 3px 3px white;
}
#box{
	border:solid 1px none;
	background-color: grey;
	z-index: -1;
	opacity: 0.2;
	height:600px;
	width: 1050px;
	
	position: absolute;
	left:280px;
	top:89px;
	border-radius: 5px;
}
#content1{
	border:solid 1px none;
	width: 500px;
	height: 580px;
	position: absolute;
	display: flex;
	right:120px;
	top:160px;
	flex-direction: column;
}

.collapsible {
  background-color: rgb(243,169,197);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 35px;
  font-family: font3;
  border-radius: 5px;
}

.active, .collapsible:hover {
  background-color: rgb(172,196,229);
}

.collapsible:after {
  content: '\002B';
  color: white;
  text-shadow: 3px 3px rgb(213,172,215);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
  overflow: scroll;

}


ul {
  list-style-type: none;
}
ul li{
	font-family: font3;
	font-size: 23px;
	letter-spacing: 2px;
}

