/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #FFECE8;
  padding: 0px 10px px;
  color: #4A0C00;
  font-family: Verdana;
}


h1{
  color: #4A0C00;
  background: #EBA394;
  padding: 30px 20px;
  margin-bottom: 0px;
}

.box{
  width: 350px;
  height: 150px;
  margin: 10px;
  padding: 25px;
  border: 5px solid #4A0C00;
  background-color: #FFC3B8;
  
}

nav{
  
background-color: black;
}

nav ul {
  margin-top: 0px;
  list-style: none;
   display: flex;
  justify-content: space-around;
  padding: 5px 10px 10px;
}

nav a {

  color: white;
   display: flex;
  justify-content: space-around;
}



a:hover,
a:focus {
  color: #FF54AB;
  text-decoration: none;
}
