@charset "utf-8";
/* CSS Document */

body {
 align:center;
 background-color:#000000;	
}

.container {
	width: 90%;
	height: 90%;
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.image {
	max-height: 300px;
	display: block;
	position: relative !important;
	top: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: auto !important;
}

.social {
	text-align:center;
	padding-top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.btn {
	transition: all .35s ease-out;
}
.btn:hover {
	transform: scale(1.1);
}

@media (max-width: 850px) { 

	.image {
		width: 100% !important;
	}

}