* {
    box-sizing: border-box;
}

body {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 14px;
}

nav {
    background: rgb(202, 117, 117);
    padding: 10px;
    width: 1000px;
    margin: 0 auto;
    
}

ul {
    display: flex;
    justify-content: center;
}

li {
    display: inline-block;
    text-align: center;
    background:rgb(255, 214, 241);
    
}

.navigation a {
  border: 1px solid black;
  padding: 10px;
  text-decoration: none;
   display: inline-block;
  color: black;
}

.navigation a:hover {
    background-color:rgb(197, 232, 233);
}
