* {
	box-sizing: border-box;
}

body {
	font-family: Verdana;
	background: #c7c7c7;
	padding: 20px;
}

#main {
	width: 100%;
	max-width: 800px;
	margin: 30px auto;
	box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
}
#title {
	color: #f2545b;
	font-size: 2.75rem;
}
#header {
	background: #08415c; /*linear-gradient(#a5ffd6, #9345e9); */
	position: relative;
	height: 200px;
	padding: 30px;
}
#pic {
	width: 250px;
	position: absolute;
	right: 20px;
	top: 0px;
}
#menu {
	width: 100%;
	display: flex;
	background: #08415c;
}
#menu a {
	flex: 1;
	text-align: center;
	padding: 5px 0px;
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	transition: background 100ms, color 100ms;
}
#menu a.selected {
	background: #fcfcfc;
	color: #08415c;
}
#menu a:hover {
	/* background: rgba(255,255,255,0.5); */
	color: #f2545b;
}
#content {
	/* height: 400px; */
	background: #fcfcfc;
	padding: 50px;
}

p {
	line-height: 2rem;
	text-align: justify;
}

b {
	color: #08415c;
}

#content ul {
	list-style: square;
}
#content ul li {
	margin: 10px 0px;
}

h1 {
	margin: 0px auto;
	font-size: 1.20rem;
	text-align: center;
	color: #08415c;
}

table {
	margin: 20px auto;
	/* border: 1px solid red; */
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

/* table tr {
	border-bottom: 1px solid #f2545b;
} */

table tr td:first-child {
	width: 70%;
	padding: 5px 0px;
}

address {
	font-style: initial;
	line-height: 2rem;
}

@media only screen and (max-width: 500px) {
	#menu {
		flex-direction: column;
	}
	#content {
		padding: 50px 20px;
	}
	p {
		text-align: left;
		line-height: 1.4rem;
	}
}