* {
     margin: 0;
    padding: 0;
}

body {
  background-color: rgb(233, 223, 211);
  color: rgb(17, 10, 2);
}

h1 {
  text-align: center;
  font-size: 75px;
  font-family: papyrus;
  margin-top: 25px;
  letter-spacing: 0em;
  /* display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px; */
}

.sticky {
display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: -15px;
}

nav{
    margin: 0 auto;
    text-align: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
}

h2 {
  font-family: papyrus;
  font-size: 2em; 
  text-align: center;
  margin: 0px;
  margin-top: 10px;
}

ul {
  list-style-type: none;
}

hr {
    box-shadow: 4px 4px 5px #888888;
}

li { 
    display: inline-block;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;   
}  

img {
  width: 350px;
  margin: 10px;
  transition: all 1s;
}

img:hover {
  transform: scale(1.1);
}