    /*--- PAGE STYLE ---*/

*{
    box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face {                  
font-family: 'CablSans';
src: url(https://humantooth.neocities.org/fonts/CalSans-SemiBold.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} 

} 

@font-face {                  
    font-family: 'Protest Strike', sans-serif;
    src: url(https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap);
    font-weight: 400;
    font-style: normal;
}

@font-face {                  
    font-family: 'Racing Sans One', sans-serif;
    src: url(https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap);
    font-weight: 400;
    font-style: normal;
}

body{
    background: linear-gradient(to top, #020024 0%, #090979 35%, #00d4ff 100%);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    font-family: 'CablSans';
	color: #060552;
}

.mobiletext{
	display: none;
}


    /*--- HEADER/LANG ---*/

.headerwrapper{
	top: 0;
	width: 600px;
	margin: 0 auto;
	margin-bottom: 0rem;
}

.header{
	display: flex;
	align-items: center;
	justify-content: center;
	
    margin-bottom: 20px;
	padding-bottom: 5px;
	
	height: 230px;
	width: 600px;
	margin-top: 1rem;
	
	border-radius: 20px 1px;
	background: linear-gradient(160deg, #ffffff99, #ffffffd9, #ffffff);
	background-size: 600px;
	background-position: center bottom;
	box-shadow: 7px 7px 0 2px #060552b6;
}

.title{
	font-size: 300%;
	text-align: center;
	font-family: 'Racing Sans One', sans-serif;
	font-style: none;
	
	color: #00d4fff2;
	filter: drop-shadow(3px 4px 0px #060552)
			drop-shadow(0.5px -.9px 0 #060552)
	        drop-shadow(-1.2px 0 0 #060552)
			drop-shadow(0 2px 0 #060552)
	        drop-shadow(2px 0 0 #060552);
}

.title p{
  line-height: 30px;
  padding-top: 0px;
}
	


    /*--- MAIN CONTENT ---*/
	

.lang{
	flex: 1;
	float: left;
	height: 50px;
	width: 187px;
    font-size: 16.7px;
    text-align: center;
	
	background: linear-gradient(160deg, #ffffffcc, #ffffffe6, #ffffff);
	border-radius: 20px 1px;
    box-shadow: 7px 7px 0 2px #060552b6;
	
	background-position: center bottom;
	align-items: center;
	justify-content: center;
}
 
.box{
	flex: 2;
	float: right;
	width: 390px;
	height: 300px;
    font-size: 17px;
	font-weight: bold;
    text-align: center;
	
	padding-top: .7rem;
	
	background: linear-gradient(160deg, #ffffffcc, #ffffffe6, #ffffff);
	border-radius:20px 1px;
    box-shadow: 7px 7px 0 2px #060552b6;
	
	background-position: center bottom;
	align-items: center;
	justify-content: center;
	
	margin-bottom: -60px;
}

.box2{
	flex: 3;
	float: left;
	width: 187px;
	height: 233px;
    font-size: 17px;
	font-weight: bold;
    text-align: center;
	
	background: linear-gradient(160deg, #ffffffcc, #ffffffe6, #ffffff);
	border-radius:20px 1px;
    box-shadow: 7px 7px 0 2px #060552b6;
	
	background-position: center bottom;
	align-items: center;
	justify-content: center;
	
	margin-top: 20px;
	margin-bottom: -60px;
}
 
.content{
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

}
 
.lang ul{
    display: flex;
}
 
.lang li{
    display: inline;
}

.box ul{
    display: flex;
    justify-content: space-evenly;
}
 
.box li{
    display: inline;
}

.pagedoll{
	flex: 4;
	margin: 6.5rem;
	margin-bottom: -5rem;
	margin-top: 17.5rem;
	margin-left: 6.5rem;
	padding: 0px;
	align-items: flex-end;
	justify-content: center;
  }
  
 .pagedoll:hover{
	 transform: scale(1.02) rotate(1deg);
 }
  
  /*--- LINK PROPERTIES ---*/
  
.title a:link{
    font-family: 'Racing Sans One', sans-serif;
	font-size: 100%;
    background: linear-gradient(120deg, red, orange, yellow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
	}

.title a:visited{
	background: linear-gradient(120deg, red, orange, yellow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
	}

.title a:hover{
	font-size: 110%;
	}

.title a:active{
	background: linear-gradient(120deg, red, orange, yellow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
	}
	
a:link{
    font-family: 'CablSans';
	color: #060552;
}

a:visited{
	color: red;
	font-weight: bold;
}

a:hover{
	font-size: 95%;
}

a:active{
	font-size: 90%;
}

  /*--- BUTTON PROPERTIES ---*/

.box a{
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(120deg, red, orange, yellow);
    color: white;
    text-decoration: none;
    border-radius: 20px 1px;
	max-width: 12rem;
	box-shadow: 7px 7px 0 2px #060552b6;
	margin-left: 4.5rem;
}

.box a:hover{
	background-color: #ffffff;
}

  /*--- ANIMATION PROPERTIES ---*/

@keyframes slideIn {
  0% {
    transform: translateX(95%);
    opacity: 0;
  }
  70% {
    transform: translateX(0);
    opacity: 1;
  }
  85% {
    transform: translateX(-3%);
  }
  90% {
  	transform: rotate(-.3deg);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		visibility: hidden;
	}
  100% {
    opacity: 1;
    visibility: visible;
  }
}

  /*--- MOBILE ONLY ---*/

@media screen and (max-width: 740px){
	
	.mobiletext{
		display: inline;
	}
	
	.desktoptext{
		display: none;
	}
}