/* 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: #e0726b;
  background-image:url(checker.gif);
}

.container {
  background-color: pink;
  width: 1160px;
  padding: 20px 20px 40px 20px;
  
}
.centered {
  display:block;
  margin-left: auto;
  margin-right: auto;
}

p, h2, h1{
  color:#e0726b;
  font-family: Verdana;
}
.outline{
  border:4px solid #e0726b;
}

nav{
  top:0;
  position: sticky;
}

nav button{
  background-color:#e0726b;
  color:white;
  padding:10px 5px 5px 10px;
  width:20%;
  margin:0 0 0 0;
}

nav button:hover{
  background-color:pink;
}

.flexbox{
  display:flex;
}
.image{
  border-collapse:collapse;
}
.caption{
  color:black;
  background-color:white;
  border:1px solid black;
  margin:0 0 0 0;
  text-align:center;
}

.banner{
  background-color:#e0726b;
  color:white;
}