* {
    margin: 0;
    padding: 0;
}






body {
    background-color: black;
  margin: 0;
  padding: 0;
  animation: fadein 5s ease-in;
}





ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color:#000000;
  display: flex;
  justify-content: center;

}




ul li a {
  display: block;
  color: white;
  padding: 25px 50px;
  text-decoration: none; 
  font-size: 20px;
font-family: 'Cinzel';
/* border: 1px dotted rgb(255, 208, 0);
margin-right: 10px; */
}




 ul li a:hover:not(.active) {
  background-color: #033bb4;
}




  ul li a.active {
  background-color: #04AA6D;
}




h1 {
    text-align: center;
    font-weight: 200;
    margin-top: 60px;
     font-family: 'Cinzel';
    margin-bottom: 30px;
    font-size: 48px;
    letter-spacing: 10px;
    color: white;
}




h2 {
    text-align: center;
     font-family: 'Cinzel';
    font-weight: 100;
    letter-spacing: 10px;
    color: white;

}




p {
    text-align: center;
    font-size: 26px;
    letter-spacing: 15px;
}





.headerinfo { 
    display: block;
    font-family:'Courier New', Courier, monospace;
    background-color: black; 
    color: white;
    margin: auto;
   max-width: 80%; 
   margin-top: 100px;
   margin-bottom: 100px;
   font-size: 22px;
}

.headerinfo p {
    margin-top: 40px;
    text-transform: uppercase;  
}

.headerinfo a {
    color: #c78500;
    text-decoration: none;
}

.headerinfo a:hover {
    color: white;
}



.merch {
display: grid;
grid-template-columns: 1fr 1fr 1fr; /* four equal columns */
grid-template-rows: auto  auto auto; /* three rows with specific heights */
align-items: center;
justify-content: center;
width: 90%;

margin: auto;
gap: 10px;
}




.merchbox {
 height: auto;
 justify-content: center;

}

.merchbox button {
    width: 200px;
    margin: auto;
    padding: 20px 20px;
    background-color: black;
    color: white;
    text-align: center;
}




.merchbox a {
    text-align: center;
    text-decoration: none;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}




.mainsection { 
    display: flex;
    margin: auto;
    justify-content: stretch;
    align-items: stretch;
     row-gap: 10px;
    column-gap: 10px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 30px;
    height: auto; 
}



.mainsectionbox {
    width: 100%; 
   opacity: 40%;
    
}




.mainsectionbox:hover{
scale: 1.2;
opacity: 100%;
}



.mainsectionbox div {
    margin: auto;
  
} 

@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}







 @media screen and (max-width: 1200px) { 

.merch {
    flex-direction: column;
     display: grid;
   grid-template-columns: 1fr 1fr; 
grid-template-rows: auto  auto auto; 
row-gap: 10px;
}





}




@media screen and (max-width: 800px) {
    .mainsection {
        flex-direction: column;
    }

.merch {
   display: grid;
   grid-template-columns: 1fr; /* four equal columns */
grid-template-rows: auto  auto auto; 
row-gap: 10px;
}
}

