@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'oicnormal'; /*a name to be used later*/
    src: url('oicnormal.otf'); /*URL to font*/
}

@font-face {
    font-family: 'oicbold'; /*a name to be used later*/
    src: url('oicbold.otf'); /*URL to font*/
}

@media only screen and (min-device-width: 480px){}

html, body {
	margin: 0;
	padding: 0px;
	background-color: #000;
	color: #fff;
	font-family: 'oicnormal';
	width:100%;
	height:100%;
}

#triangles_image {
	background-image: url("triangles.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width:90%;
	height:90%;
	margin-left:auto;
	margin-right:auto;
}

#header {
	width:100%;
	height:64px;
	border-bottom: 1px solid #333;
	text-align: center;
}

#title {
	font-size:28px;
	font-weight: bold;
	cursor:default;
	padding-top:4px;
}

#contents {
	width:100%;
	height:calc(80% - 140px);
}

#links {
	display:inline-block;
	width:100%;
	font-size:28px;
	font-family: 'oicbold';
}

#link_mp3 {
	float:left;
	cursor:pointer;
	padding-left:48px;
}

#link_wav {
	float:right;
	cursor:pointer;
	padding-right:48px;	
}

#format_title {
	width:100%;
	height:32px;
	text-align: center;
	font-size: 18px;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: white;
}
