header{
  color: white; /* Makes letter white */
	text-align: center; /* aligns all text center */
  width:75%;
  background-color: maroon; /* Change background in the header container */
  padding: 0.25em;
  margin: auto;
  margin-top:0.5em;
  border-radius: 25px; /* Makes boarders slightly rounded */
}

nav{
 display: block;
 unicode-bidi: isolate;
   
}
    
.nav-menu ul{
  list-style-type: "⭐️";
  margin: 0;
  padding: 25px;
  display: flex; /* This makes the list items sit side-by-side horizontally */
  justify-content:center;
  gap: 2em;
}

main{
  display: block;
  unicode-bidi: isolate;
  
}
p{
  text-align: center;
  
}

h2{
  text-align: center;
  
}


section{
  width: 90%;
  padding: 1rem;
  margin: 1rem;
  display: block;
  justify-content: center;
  
}
.image-container{
  display: flex;
  justify-content: center;

}

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

.crash{
  float: left;
  margin-left: 2em;
  margin-right: 5em;
  width: 100px;
  height: 100px;
  
}

img{
  width: 200px ;
}



 