@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Office:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
*{
	box-sizing: border-box;
}
body{
	font-family: 'Ysabeau Office', sans-serif; 
	font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
	text-align:center;
	min-height:100vh;
	background-size: 200px;
	margin:0;
	padding:10px 15px;
	background: rgb(6,122,119);
	background: linear-gradient(180deg, rgba(6,122,119,1) 0%, rgba(23,83,127,1) 100%);
	color:#fff;
	position:relative;
}
body .kithara{
	position:fixed;
	content:"";
	width:30%;
	height:15vw;
	left:0;
	top:0;
	background:url(kithara.png) no-repeat left top;
	background-size:contain;
	z-index:-1;
	opacity:0.5;
}
body .violi{
	position:fixed;
	content:"";
	width: 20%;
	height: 35vw;
	left:0;
	bottom:0;
	background:url(violi.png) no-repeat left top;
	background-size:contain;
	z-index:-1;
	opacity:0.5;
}
body .right{
	position:fixed;
	content:"";
	width:15%;
	right:0;
	top:0;
	bottom:0;
	background:url(right.png) no-repeat left top;
	background-size:cover;
	z-index:-1;
	opacity:0.5;
}
h1{
	font-weight:bold;
	margin:10px;
	font-size:40px;
	line-height:1em;
}
h2{
	font-weight:normal;
	margin:10px;
}

audio{
	height:34px;
}

.page-wrapper{
	position:relative;
	padding-top:30px;
	padding-bottom:200px;
}
.content{
	text-align:left;
}

table{
	border-collapse: collapse;
	margin:0 auto;
}

table td{
	padding:6px 3px 2px;
}

table tr td:first-child{
	border-radius:30px 0 0 30px;
	padding-left:12px;
}

table tr td:last-child{
	border-radius:0 30px 30px 0;
	padding-left:6px;
	padding-right:6px;
}

table tr:hover{
	background:rgba(0,0,0,0.3);
}

.footer{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	padding:20px;
	font-size: 20px;
}
.footer img{
	width:172px;
	heigth:auto;
}
.name{
	font-size:20px;
}


@media all and (max-width:640px){
	table {
		text-align:center;
	}
	table tr{
		display:block;
		border-radius:50px;
	}
	table tr td{
		display:inline-block;
	}
	table tr td:last-child{
		display:block;
	}
	
}
@media all and (max-width:540px){
	body{
		background-size: 100px;
	}
	h1{
		font-size:26px;
	}
	audio{
		max-width:100%;
	}
}
@media all and (max-height:500px){
	h1{
		margin-bottom:50px;
	}
	
}