@charset "utf-8";
/* CSS Document */

#container {
	width: 1000px
}

body {
	background-color: #f7e2f5
}

#header {
	color: teal; font-size: 25px
}

h1, h2, p {
	text-align: center;
}

.container {
	position: relative;
}


ul {
  list-style: disc inside;
  margin: 0;
  padding: 0;
}


#menu {
  background-color: #8a6372;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}

#menu a {
  color: white;
  text-decoration: none;
  padding: 3px 20px;
  font-weight: bold;
  transition: background 0.3s;
}

#menu a:hover {
  background-color: #111;
}

#footer {
  background-color: #8a6372;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}

#footer a {
  color: white;
  text-decoration: none;
  padding: 3px 20px;
  font-weight: bold;
  transition: background 0.3s;
}

#footer a:hover {
  background-color: #111;
}