body { margin: 0px; padding: 0px; }
html { 
	background: url(images/bg.webp) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}
.logo {
	background-repeat: no-repeat;
	text-align: center;
	margin-bottom: 40px;
}
.inner-block {
	border-radius: 10px;
	background-color: rgba(255,255,255, 1); 
	box-shadow: 2px 2px 16px rgba(0,0,0, 0.106488);	
	padding: 24px 56px;
	width: 272px;
}
.title {
	font-family: 'Bitter', serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	color: rgba(0,0,0,1);
	font-size: 24px;
	margin:16px 0 24px 0;
	text-align: left;
}
ul,
li {
	list-style: none;
	padding: 0px;
}
.flag {
  float: left;
  margin-right: 16px;
	margin-top: 8px;
}
.name {
    text-align: left;
    margin: 16px 0;
}
ul{
	line-height: 32px;
}
a { 
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	color: rgba(0,0,0,1);
}
a:hover{
	text-decoration: underline;
}

@media only screen and (max-width: 768px) {
	.inner-block {
		padding: 24px 32px;
	}
}
@media only screen and (max-width: 360px) {
 	.inner-block {
		margin-bottom: 32px;
		width: auto;
	}
}

