body {
	background-color: #031223;
	background-image: url('images/background.svg');
	background-size: cover;
	background-position: center;
	color: white;
	font-family: 'Source Code Pro', monospace;
	text-align: center;
}

.content {
	width: 100%;
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
}
@media(min-width: 500px) {
	.content {
    	top: 100px;	
	}
}

.primary-image {
	width: 80%;	
	overflow: visible;
}
@media(min-width: 500px) {
	.primary-image {
    	width: 400px;	
	}
}
@media(min-width: 750px) {
	.primary-image {
    	width: 450px;	
	}
}
.title {
	background-image: url('images/title_background.svg');
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    height: 100%;
    width: fit-content;
    background-size: 100% 100%;
	padding: 0 20px;
}
@media(min-width: 400px) {
	.title {
		padding: 0 50px;
	}
}
@media(min-width: 896px) {
	.title {
    	padding: 0 80px;
	}
}

.title h1 {
	font-size: 2em;
    margin: 50px 0 0;
    line-height: 1.05;
}
@media(min-width: 750px) {
	.title h1 {
    	font-size: 4.5em;	
	}
}
@media(min-width: 900px) {
	.title h1 {
    	font-size: 5.5em;	
	}
}

.title p {
	margin: 0;
    font-size: 1em;
}
@media(min-width: 750px) {
	.title p {
    	font-size: 1.5em;
    	line-height: 1.3;
	}
}
@media(min-width: 900px) {
	.title p {
    	font-size: 1.9em;
    	line-height: 1.4;
	}
}

.sub-title {
    font-size: 1em;
    padding: 25px 15px 40px;
    margin: auto;
	max-width: 992px;
}
@media(min-width: 750px) {
	.sub-title {
    	font-size: 1.5em;
	}
}
@media(min-width: 1230px) {
    .title,
    .sub-title{
        max-width: 1220px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }
}
.mailto,
.social_links{
margin-bottom: 30px;
}
.btn{
	display: inline-block;
	padding: 8px 22px;
	margin: 10px auto;
    font-size: 20px;
    font-weight: bold;
	text-decoration: none;
	border: solid 2px currentcolor;
	transition: color 0.4s,
}
.btn-primary{
    color: #fff;

}
.btn-primary:hover,
.btn-primary:focus{
    color: #4cff06;
}

.rocket {
	animation: rocket 10s cubic-bezier(0.91, 0, 0.21, 0.99) infinite;
}

.rocket-shadow {
	animation: rocket-shadow 10s infinite;
}

.svg-opacity {
	opacity: 0.7;
}

.flammes {
	opacity: 0;
	animation: flamme 10s infinite;
}


@keyframes rocket {
	0% {
    	transform: translateY(0);
	}
	15% {
    	transform: translateY(0);
	}
	40% {
    	transform: translateY(-750px) translateX(150px) rotate(10deg);
	}
	60% {
    	transform: translateY(-750px) translateX(-100px) rotate(-10deg);
	}
	85% {
    	transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	100% {
    	transform: translateY(0);
	}
}

@keyframes rocket-shadow {
	0% {
    	opacity: 1;
	}
	20% {
    	opacity: 1;
	}
	35% {
    	opacity: 0;
	}
	70% {
    	opacity: 0;
	}
	80% {
    	opacity: 1;
	}
	100% {
    	opacity: 1;
	}
}

@keyframes flamme {
	0% {
    	opacity: 0;
    	height: 0;
	}
	20% {
    	opacity: 0;
    	height: 0;
	}
	40% {
    	opacity: 1;
    	height: 100px;
	}
	75% {
    	opacity: 1;
    	height: 100px;
	}
	80% {
    	opacity: 0;
    	height: 0;
	}
	100% {
    	opacity: 0;
    	height: 0;
	}
}

