html {
  background-color: #333;
}


body {
  	height: 1000px;
  	width: 600px;
  	margin: 0 auto;
  	background-color:#292929;
  	padding: 20px 40px 20px 20px;
  	border: 15px solid black;
}
summary {
  font-size: 18px;
  font-weight: bold;
  color: orange;
  cursor:pointer;
  display: list-item;
  counter-increment: list-item 0;
  list-style: disclosure-closed inside;
}
details {
  margin: 10px 0;
  padding:10px;
  border-radius:5px;
}
p {
	color: white;
}
h1 {
  background-color: black;
  font-size:36px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  padding:10px;
  color: #ffffff;
  border-bottom: 2px solid whitesmoke;
  border-top: 2px solid whitesmoke;
  border-right: 2px solid whitesmoke;
  border-left: 2px solid whitesmoke;
}
.highlight {
  color: black;
  background-color: #ffa31a;
  padding:0 5px;
}
h2 {
  color:#808080;
  text-align: center;
  font-size:30px;
}
ul {
  color: orange;
}
img {
  height: 100px;
  display: -webkit-box;
  margin: 0 auto;
  width:100px;
  border: 3px solid black;
  border-radius: 10px;
}
a {
  color:orange;
}
footer{
  background-color: #333;
  color:#fff;
  padding:20px 0;
  text-align: center;
  margin-top:10px;
}
.footer-container{
  display:flex;
  justify-content: space-between;
  max-width: 1200px;
  margin:0 auto;
  padding: 0 20px;
}
.footer-contact,.footer-social{
  width: 45%;
  
}
.footer-contact h3,.footer-social h3{
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  
}
.footer-contact p{
  margin: 5px 0;
}
.footer-social a{
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
  
}
.footer-social a:hover{
  color: #ffcc00;
}
.footer-social .social-icon{
  font-size:18px;
  margin-right:10px
}
.heading{
  color:#808080;
  font-size:x-large;
  text-decoration: underline;
  font-family:Monocraft;
}
.container{
  display:flex;
  align-items:center;
  gap:10px;
}
.notes{
  font-size: 16px;
  color:beige;
}
.footer-quote{
  font-size:24px;
  color:cadetblue;
  font-weight: bolder;
}
.nav-button {
      display: inline-block;
      padding: 10px 20px;
      font-family:Monocraft;
      background-color: #ffa31a;
      color: black;
      text-decoration: none;
      border-radius: 5px;
}
.nav-button:hover {
      background-color: #0056b3;
}