
/*custom font*/
@font-face {
    font-family: 'zombieregular';
    src: url('zombie-regular-webfont.woff2') format('woff2'),
         url('zombie-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@media screen and (max-width:600px){
   aside,section,article{
     width:100%;
   }
}



/*main background */
body{
  margin: 0;
   background-image: url(/Other_images/purplebg.png);
   background-color:  #423452;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}


header{
   background-color:#423452;
   text-align: center;
   padding: 25px;
   height:110px;
}


.navbar ul{

    list-style-type: none;
    background-color: #251d2e;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    
    

}

.navbar a{

    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    

}

.navbar a:hover{

    background-color: hsl(0, 0%, 10%);

}

.navbar li{

float:left;

}



  
  
  
  /* MAIN CONTAINER HOME */

.container {
  width: 80%;
  height: 700px;
  margin: 0 auto;
    display:flex;
   flex-direction:row;
   justify-content:space-evenly;
   align-items: center;
   flex-wrap: wrap;
   gap: 1em;
}

.item {
  width: 150px;
  height: 150px;
  background-color: #251d2e;
  padding: 1em;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
}



.item-1 {
 flex-grow: 0.;
}
.item-2 {
 flex-grow: 1;
}
.item-3 {
 flex-grow: 0.5;
}

/* FOOTER */



footer{
   display: block;
   clear: both;
   background-color:#251d2e;
   text-align: center;
   padding: 25px;
   height:100px;
  bottom: 0;
  width:100%;
}







/*image gallery*/
  .img-gallery{
  width: 70%;
  margin: 60px auto 100px;
  display: grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.img-gallery img{
width: 100%;
cursor: pointer;
transition: 0.4s;
}

.img-gallery img:hover{
 transform: scale(0.8) rotate(-15deg);
 border-radius: 20px;
 box-shadow: 0 32px 75px rgba(68,77,136,0.2);
}

.full-img{
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}


.full-img img{
width: 90%;
max-width: 540px;


}


.full-img span{
position: absolute;
top: 5%;
right: 5%;
font-size: 30px;
color: white;
cursor: pointer;


}


