/* 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: pink;
  color: black;
  font-family: Times New Roman;
  text-align: center;
  max-width: 1100px;  
  max-height: 1000px;       
  border: 5px solid #333;  
  box-sizing: border-box;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 50px 1rem;
}
h1 {
  font-family: 'New Century Schoolbook', serif;
  text-align: center;
}
nav {
  background-image: url("pinkandbrownplaid.jpg");
  box-shadow: 4px 0px 4px black;
}
a{
  padding: 0.8rem 1.25rem;
  display: inline-block;
  background-color: #ffcce0;
  color: black;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  margin: 30px;
  transition: background-color .2s, transform .1s;
  white-space: nowrap;
  border: 3px solid;
  box-shadow: 4px 4px 0 black;
  min-width: 65px;
  text-align: center;
}