/* font-family: 'Allison', cursive;
font-family: 'Raleway', sans-serif; */

* {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}
header {
    background-color: black;
    padding: 0 90px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

#features{
    padding: 50px 90px ;
   

}

#features div{
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    justify-content:center ;
    flex-wrap: wrap;


}

nav{
    align-self: center  ;
}


nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: 3px 9px;

}
nav a:hover {
    color: orange;
}

#hero{
    height: 60vh;
    background-color: blueviolet;
    overflow: hidden; 
}


#hero img{
    width: 100%;
    height: auto;
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}


article {
    background-color: purple;
    width: 330px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    height: 400px;
     
    padding: 15px;
    


}

article span{
    flex-grow: 1;
    text-align: center;

}


h1 {
    font-family: 'Allison', cursive;
    font-size: 80px;
    color: orange;

}
h2 {
    font-family: 'Allison', cursive;
    font-size: 60px;
    color: white;
}

h3 {
    font-family: 'Allison', cursive;
    font-size: 80px;
    color: orange;
    text-align: center;
}

h4 {
    font-family: 'Allison', cursive;
    font-size: 60px;
    color: rgb(255, 255, 255);

}
h5 {
    color: purple;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

p {
    color: rgb(235, 226, 245);
}
i {
    font-size: 50px;
    color: orange;
}
article a {
    background-color: white;
    color: purple;
    text-decoration: none;
    text-transform: uppercase;
    padding: 3px 9px;
    align-self: center;
}
#gallery {
    background-color: black;
    padding: 40px 90px;
   
}

#gallery h2{
    text-align: center;

}
#gallery div{
    display: flex;
    flex-wrap: wrap;
    column-gap:10px ;
    row-gap: 10px;

    justify-content: center;

}
#gallery img{
    flex: 1 1 230px;


}

footer {
    background-color: orange;
    padding: 20px 90px;
   display: flex;
   column-gap: 20px;
   flex-wrap: wrap;
   justify-content: center;
   row-gap: 20px;

}
footer i {
    font-size: 30px;
    color: white;
}

.icons{
    align-self: center;
}



footer h4{
    flex-grow: 1;
}









 @media (max-width:945px)
 {
     body{
         background-color: rgb(142, 165, 42);
     }
nav{
    display: flex;
    flex-direction: column;
}
header{
    padding:10px 30px;
}

   
    }
    h4{
        font-family: 'Allison', cursive;
        font-size: 60px;
        color: azure;
        flex-grow: 1;
        flex: 100%;
    }
   h1{
    font-size: 60px;

   }








  @media (max-width:500px)
  {
      body{
          background-color: rgb(225, 3, 177);
      }
      nav{
        flex-direction: row;
        display: flex;
        text-align: center;
        #features{
            padding: 0 32px;
        }
     }
     h3{
        font-family: 'Allison', cursive;
        font-size: 50px;
        color: orange;
        text-align: center;
        margin-top: 40px;
     }
     article{
      
        flex: 100%;
        margin-bottom: 20px;
        height: 308px;
        padding: 15px;
        display: flex;
        flex-direction: column;
     }
      #gallery{
        background-color: black;
        padding: 40px 40px;
      }
      footer span:last-of-type{
        flex: 100%;

      }
      footer{
        justify-content: center;
    
      }
      footer span{
        text-align: center;
      }
      footer h4{
        text-align: center;
      }
   }
  