* { 
	border-box: box-sizing; 
	-webkit-backface-visibility: hidden;
}
body {
	background: #211e1f;
}
@font-face {
    font-family: 'Nasa'; /*a name to be used later*/
    src: url('/nasalization-rg.otf'); /*URL to font*/
}
.ring-container {
	position: relative;
	top: -35px;
	left: -50px;
}

.brand {
	position: absolute;
	left: 60px;
	top: 26px;
	color: white;
	font-family: monospace;
	font-size: 17px;
	font-weight: bold;
}

.circle {
	width: 15px;
	height: 15px;
	background-color: #ecd14a;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	left: 20px;
}

.ringring {
	border: 3px solid #ecd14a;
	-webkit-border-radius: 30px;
	height: 25px;
	width: 25px;
	position: absolute;
	left: 15px;
	top: 15px;
	-webkit-animation: pulsate 1s ease-out;
	-webkit-animation-iteration-count: infinite;
	opacity: 0.0
}

@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		opacity: 0.0;
	}

	50% {
		opacity: 1.0;
	}

	100% {
		-webkit-transform: scale(1.2, 1.2);
		opacity: 0.0;
	}
}

cursor {
	-webkit-animation: 1s blink step-end infinite;
	-moz-animation: 1s blink step-end infinite;
	-ms-animation: 1s blink step-end infinite;
	-o-animation: 1s blink step-end infinite;
	animation: 1s blink step-end infinite;
}

@keyframes "blink" {

	from,
	to {
		color: transparent;
	}

	50% {
		color: white;
	}
}

@-moz-keyframes blink {

	from,
	to {
		color: transparent;
	}

	50% {
		color: white;
	}
}

@-webkit-keyframes "blink" {

	from,
	to {
		color: transparent;
	}

	50% {
		color: white;
	}
}

@-ms-keyframes "blink" {

	from,
	to {
		color: transparent;
	}

	50% {
		color: white;
	}
}

@-o-keyframes "blink" {

	from,
	to {
		color: transparent;
	}

	50% {
		color: white;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://srv.megabyte.az/nasalization-rg.otf');

* {
	box-sizing: border-box;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	/* background-color: #f4f6f8; */
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 100%; */
	/* width: 100%; */
	/* overflow: hidden; */
	position: relative;
}

.container__image {

	width: 250px;
	height: 250px;
	border-radius: 50%;
	background-size: cover;
	transition: ease-in-out 0.3s;
	-webkit-backface-visibility: hidden;
	z-index: 2;
	box-sizing: border-box;
	cursor: pointer;
	box-shadow: -1px 2px 63px 0px rgba(236, 209, 74, 0.75);
	-webkit-box-shadow: -1px 2px 63px 0px rgba(236, 209, 74, 0.75);
	-moz-box-shadow: -1px 2px 63px 0px rgba(236, 209, 74, 0.75);
}

.container__image:before {
	content: ' ';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: inherit;
	background-position: bottom;
	filter: blur(40px) saturate(0%);
	transform: scaleX(0.4);
	transition: ease-in-out 0.4s;
	border-radius: 120px;
	transform-origin: right;
	opacity: 0;
	z-index: -1;
}

.container__image .container__info {
	position: relative;
	line-height: 1.8;
	transition: ease-in-out 0.3s;
	opacity: 0;
}

.container__author {
	font-weight: bold;
	color: #ecd14a !important;
}

.container__image .container__location {
	transition-delay: 0.15s;
}

.container__image .container__location:nth-child(3) {
    font-family: 'Nasa';
}

.container__image .container__location span {
    color: #dc3329;
    font-weight: bold;
}
.source span {
    color: #dc3329;
}
.container__image:hover {
	position: relative;
	display: flex;
	border-radius: 0;
	flex-direction: column;
	justify-content: center;
	width: 450px;
	height: 310px;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(9, 55, 53, 0.08), 0px 16px 24px rgba(9, 55, 53, 0.1), 0px 24px 32px rgba(9, 55, 53, 0.14);
}

.container__image:hover:before {
	width: 100%;
	opacity: 0.18;
	filter: blur(1px) saturate(100%);
	transform: scale(2.8) translate3d(-18%, 0px, 0px);
}

.container__image:hover .container__info {
	transform: translate3d(-60%, 0px, 0px);
	opacity: 1;
	color: white;
}

.container__explanation {
	position: relative;
	line-height: 1.8;
	transition: ease-in-out 0.3s;
	opacity: 0;
}


.container__image:hover .container__explanation {
	position: absolute;
	transform: translate3d(-27%, 250px, 0px);
	width: 1000px;
	opacity: 1;
	color: white;
}

.link {
	border-bottom: 1px solid transparent;
	color: #06c0a8;
	text-decoration: none;
	transition: ease-in 0.13s;
}

.link:hover {
	background-color: #06c0a8;
	color: #fff;
}