@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body{
	line-height: 1.5;
	margin: 0px;
	padding: 0px;
	font-size: 18px;
	background-color: #818A79;
	background-image: url("../images/world_map.png");
		background-position: center;
	background-repeat: no-repeat;
	font-family:"Merriweather", sans-serif;
	color: #ffffff;
}
main{
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	height: auto;
	margin: auto;
	text-align: center;
}

main H2{
	font-family:"Merriweather", sans-serif;
}
.container{
	width:100%;
	max-width: 400px;
	background-color: #ffffff;
	border: thin;
	border-radius: 10px;
	padding:20px 0;
}
/*.container img:hover{
	padding-left: 3px;
}*/
.element{
	width: 100%;
	display:flex;
	justify-content:space-between;
	align-items: center;
	padding:12px 20px;
	position: relative;
}
.element::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 360px;
	border-bottom: 1.5px solid #EBEBEB;
}
.element:hover{
	background-color: #f0f0f0;
}
.element img{
	padding:0px;
	margin:0px;
}

.button{
	width: 100px;
	height: 40px;
	font-size: 14px;
	background-color: #818A79;
	color: #ffffff;
	border: thin;
	border-radius: 5px;
	text-decoration: none;
	
}
.button p{
	vertical-align: middle;
	font-size: 12px;
	font-family:"Merriweather", sans-serif;
}
.button:hover{
	background-color:  #94a497;
}
a {
	text-decoration: none;
}
.bird_img{
	width: 100%;
	max-width: 300px;
	height: auto;
}
.url_title{
	padding:30px 0px 0px 0px;
	font-family: "League Gothic";
	text-decoration: underline;
	font-size: 2em;
	color: #ffffff;
}
/*.url_title:hover{
	text-decoration:line-through;
}*/