html {
	font-weight: 500;
	font-size: 62.5%;
	line-height: 1.75;
}
@media screen and (min-width: 720px) {
	html {
		font-size: 68.75%;
	}
}
@media screen and (min-width: 960px) {
	html {
		font-size: 75%;
	}
}

body {
	background: #fdd850;
	color: #2F5770;
	margin: auto;
	padding: 70px 20px 60px 20px;
	text-align: center;
	font-size: 1.4rem;
	font-family: "Exo", Klavika, sans-serif;
	font-weight: 500;
}

a {
	color: #d80c57;
	transition: all 0.1s;
}
a:hover,
a:active,
a:focus {
	color: #4A89B0;
}

h1 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #4A89B0;
	margin: 20px 0px 0px 0px;
}
h2 {
	font-size: 1.9rem;
	font-weight: 700;
	color: #4A89B0;
	margin: 25px 0px 0px 0px;
}
h3 {
	font-size: 1.7rem;
	font-weight: 700;
	color: #4A89B0;
	margin: 30px 0px 0px 0px;
}

p {
	margin: 20px 0px;
}

h1 a, h2 a, h3 a {
	text-decoration: none;
}

strong, b {
	font-weight: 700;
}

:first-child {
	margin-top: 0px;
}
:last-child {
	margin-bottom: 0px;
}

#content {
	background: #FFF;
	margin: 50px auto 30px;
	max-width: 560px;
	min-height: 200px;
	text-align: left;
	border-radius: 8px;
	box-shadow: 0px 1px 2px #E6B03E;
	overflow: hidden;
	padding-bottom: 30px;
}

#content p, #content h1, #content h2 {
	padding: 0px 25px;
}

#content img {
	max-width: 100%;
}

#footer {
	color: #BDA13C;
}
#footer a {
	color: inherit;
}
#footer a:hover {
	text-decoration: none;
}

/* Countries */
ul.countries {
	list-style: none;
	padding: 0px;
	margin: 0px auto 15px;
	max-width: 560px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	font-size: 0.8em;
}
ul.countries li {
	position: relative;
	padding: 0px 7px 7px 0px;
}
ul.countries li.with-flag::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  vertical-align: bottom;
}
ul.countries li.flag-nl::before {
  content: url('/img/flags/nl.png');
}
ul.countries li.flag-be::before {
  content: url('/img/flags/be.png');
}
ul.countries li.flag-lu::before {
  content: url('/img/flags/lu.png');
}
ul.countries a {
    background: #ffdf6b;
    text-decoration: none;
    border-radius: 5px;
    padding: 2px 8px 0px 24px;
    display: block;
    line-height: 1.7em;
	font-weight: 700;
	box-shadow: 0px 1px 2px #E6B03E;
	color: #7D734D;
}
ul.countries a:hover {
	color: #4A89B0;
	background: #FFF;
}