* {
	padding: 0;
	margin: 0;
	outline: none;
}
	
html, body {
	width: 100%;
	height: 100%;
}

body {
	background: url(bg.jpg) no-repeat fixed center;
	background-size: cover;
}

#container {
	position: relative;
	width: 100%;
	height: 100%;
}

#logo-box {
	position: relative;
	width: 500px;
	height: 760px;
	margin: auto;
	margin-top: -380px;
	top: 50%;
	/*background: #fff;*/
	/*box-shadow: -8px 8px 10px #f0f0f0;*/
	/*box-shadow: -8px 8px 20px 1px rgba(0, 0, 0, 0.2);*/
	padding: 50px;
	box-sizing: border-box;
}

#logo {
	position: relative;
	width: 100%;
	height: 100%;
	background: red;
}
.logo-box-img {
	float: left;
	margin-bottom: 50px;
}
.logo-box-img img {
	width: 100%;
}
.main-text-box {
	margin: auto;
	width: 100%;
	float: left;
}
.main-text-box .align-right {
	float: right;
}
.main-text-box .extra-margin-spacing {
	margin-top: 10px;
	margin-left: 10px;
}
.main-text-box .highlight-info {
	filter: invert(12%) sepia(95%) saturate(5173%) hue-rotate(334deg) brightness(81%) contrast(106%);
	/*990033*/
	/*a71521*/
}
.main-text-box p {
	text-align: center;
	margin-bottom: 50px;
	
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	padding: 15px 0;
	/*color: #00aeef;*/
	background: #000; /*a71521*/
	color: #fff;
}
.main-text-box .flag-list {
	width: 214px; /*go back to 214px*/
	margin: auto;
}
.main-text-box .flag-list span:first-child {
	margin-right: 40px;
}

.main-text-box .flag-list a{
    display: block;
    width: 84px;
    float: left;
	
	transition: box-shadow 0.2s ease;
}
.main-text-box .flag-list a:first-child {
	margin-right: 40px;
}

.main-text-box .flag-list a:hover {
	box-shadow: 0 0 20px 5px #00aeef;
}
.main-text-box:nth-child(even) {
	margin-bottom: 20px;
}

@media screen and (min-width:0px) and (max-width: 768px) {	
	#logo-box {
		position: relative;
		width: 80%;
		height: auto;
		margin: auto;
		margin-top: -40%;
		top: 50%;
		padding: 0%;
	}
	#logo-box:before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	
	#logo-box img {
		width: 70%;
		position:  absolute;
		top: 45%;
		left: 15%;
		bottom: 0;
		right: 0;
	}
}