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

@keyframes FadeOpacity
{
  0%    {opacity: 0;}
  100%  {opacity: 1.0; }
}

.fadeOut
{
	animation: 0.5s ease-in 0.1s 1 reverse FadeOpacity;
}

.fadeIn
{
	animation: 0.5s ease-in 0s 1 FadeOpacity;
}

body 
{
	font-family: fredoka;
	font-size: 2.8vh;
	color: #FFF !important;
	background-color: #A22D54 !important;
	background: none !important;
	text-shadow: 0px 0px 8px rgb(0 0 0 / 0.8);
	text-align: center;
	line-height: 4vh;
}

a 
{
	color: #31567B !important;
	font-size: 4vh; 
	line-height: 6vh;
	text-decoration: none;
	text-shadow:none;
	transform: scale(1.0);
	transition: 0.3s;
}

a:hover 
{
	color: #FFF !important;
	transform: scale(1.1);
	text-shadow: 0px 0px 8px rgb(0 0 0 / 0.8);
}

a:active
{
	transform: scale(0.9);
}

a img
{
	height: 8vh;
	transform: scale(1.0); 
	transition: 0.3s;
}

a img:hover
{
	transform: scale(1.1); 
}


.background {
	background-image: url("images/styles/1.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: -0;
	z-index: -1;
}

#paint {
	margin-top:12vh;
	
	border: none;
	cursor: pointer;
	background-image: url("../images/paint-icon.png");
	background-size: cover;
	
	width:10vh;
	height:10vh;
	
	background-color: #00000000;
	transition: 0.1s;
}

#paint:hover 
{
	transform: scale(1.1) rotate(5deg); 
	background-color: #00000000;
}

#paint:active 
{
	transform: scale(0.95);
	background-color: #00000000;
}

#mainContainer
{
	width: 50%;
}

.social
{
	height: 4vh;
	align-content:center;
	filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 0.8)); 
	vertical-align:center; 
	padding-right:8px
}