body {
  background-color:#6F3E40;
  font-family: serif;
}
.main {
  /*the main body of the page.*/
 background-color:#973037;
 color:#EEECB9;
 border-style: double;
 border-width:10px;
 width:700px;
 max-width:100%;
 height:auto;
 margin:auto;
 padding:20px;
 font-size:30px;
}
.nav {
  margin:auto;
  padding:10px;
  
}
ul{
   font-size:30px;
   text-align:center;
      }
li{
  display:inline;
  list-style-type:none;
  background-color:#8D1C1C; 
  padding:5px;
      }

hr{
 border-color:#EEECB9;
}
      
a{
 color:#DEBA7C;
 text-decoration:none;
}
a:hover{
  color:#E9C78B;
 text-decoration:underline;
}
.icon {
 max-width:100%;
 font-size:20px;
 border-radius:50%;
 border-width:15px;
 border-style:double;
}
.grid {
 display:grid;
 grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-rows: 1fr;
}
.gridcard {
 border-radius:50% ;
 transition:0.5s ease-out;
 text-align:center;
}
.gridcard:hover {
 filter:brightness(1.5); 
}
 @media (max-width: 600px) {    
 .main{
   max-width:300px;
   font-size:20px;
 }
 .grid {
 display:grid;
 grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	grid-auto-rows: 1fr;
	gap: 1em;
	margin:0;
}
.icon{
 border-width:5px; 
}
 }