* a:link, * a:link *, * a:visited, * a:visited * {
transition: color 0.15s ease-out, background 0.45s ease-out, border-color 0.35s ease-out, box-shadow 0.35s ease-out;
}

body {
	margin: 0;
	font-family: Arial, serif;
	font-size: 18px;
	color: #fff;
	background-color: #a9222b;
	overflow: hidden;
}

a {
	padding: 6px;
	color: #ffffff;
	text-decoration: none;
	border-bottom: 0px solid rgba(255,255,255,0.66);
	background-color: rgba(255, 255, 255, 0.02);
	border-radius: 8px;
}
a:hover {
	padding: 6px;
	color: #111;
	border-bottom: 0px;
	background-color: rgba(255, 255, 255, 0.65);
	border-radius: 8px;
}

.intro {
	position: absolute;
	width: 100vw;
	height: 100svh;
	z-index: 3;
	
	background: url('assets/img/radiobaba_4k_transporent.png') no-repeat center center ; 
	background-size: cover;
	opacity: 0;
	
	animation: intro_animation 5s cubic-bezier(1,.06,.93,.63);
}

@-webkit-keyframes intro_animation {
	0% {
		transform: scale(1);
		opacity: 1;
		background-color: #fff;
	}
	45% {
		opacity: 1;
		background-color: #fff;
	}
	80% {
		opacity: 1;
		background-color: rgba(255, 255, 255, 0.01);
	}
	100% {
		transform: scale(4) translateX(15px) rotateZ(30deg);
		opacity: 0;
	}

}

.full-screen-video-container {
	position: relative;
	height: 100svh;
	width: 100vw;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.full-screen-video-container video {
	z-index: -1;
	position: absolute;
	width: 100%;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	object-fit: cover;
}

.full-screen-video-content {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100svh;
	width: 100%;
	align-items:center;
	justify-content: center;
	opacity: 0;
	animation: content_animation 0.8s ease-out forwards;
	animation-delay: 6s;
	
	background-color: rgba(33, 33, 33, 0.3);
	z-index: 2;
}

@-webkit-keyframes content_animation {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}

}

.full-screen-video-content .image {
	background-image: url('assets/img/radiobaba_4k_5.jpg');
	
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	z-index: 3;
}

.logo {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0px;
	
	border-radius: 40% 60% 51% 49% / 39% 65% 35% 61%  ;
	
}

.logo__image {
	max-width: 100%;
	height: auto;
	opacity: 0;
	
	-webkit-animation: zoomin 1.7s ease-in-out;
	animation: zoomin 1.7s ease-in-out;
	animation-fill-mode: forwards;
	animation-delay: 3s;
}

@-webkit-keyframes zoomin {
	0% {
		transform: scale(0.95) translateY(-6px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0px);
		opacity: 1;
	}

}

.logo__links {
	margin-top: 30px;
	opacity: 0;
	
	-webkit-animation: zoomin_links 1.2s ease-in-out;
	animation: zoomin_links 1.2s ease-in-out;
	animation-fill-mode: forwards;
	animation-delay: 3.4s;
}

@-webkit-keyframes zoomin_links {
	0% {
		transform: scale(0.95) translateY(-6px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0px);
		opacity: 1;
	}

}

.logo__link {
	margin: 0 2px;
}

.info {
	position: absolute;
	width: 68%;
	bottom: 5%;
	text-align: center;
	opacity: 0;
	
	font-family: "EB Garamond", serif;
	font-size: 1.8em;
	font-weight: 700;
	 ont-style: normal;
	line-height: .96;
	
	-webkit-animation: zoomin_video 1.2s ease-out;
	animation: zoomin_video 1.2s ease-out;
	animation-fill-mode: forwards;
	animation-delay: 4.3s;
}
.info a {
	background-color: rgba(255, 255, 255, 0.02);
}
.info a:hover {
	background-color: rgba(255, 255, 255, 0.65);
}

@-webkit-keyframes zoomin_video {
	0% {
		transform: scale(0.95) translateY(-6px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0px);
		opacity: 1;
	}

}


@media (max-width: 800px) {
  .full-screen-video-content {
	  padding: 50px;
  }
 
  a {
	  padding: 12px;
  }
  a:hover {
	  padding: 12px;
  }
}