/*CSS RESET*/ 
body, header, nav, main, footer, img, h1, h2, figure, figcaption{
    margin: 0;
    padding: 0;
    border: 0;
}
    body {
    	background-color:#fff2f1;
    	font-family: 'Gamja Flower',serif;
    	font-size: 20px;
    	color:  #bd3f23;
    }

    /*header*/
    
    header {
        background-color: #fff2f1;
        text-align: center;
        margin: 20px 0;
    }
    
    header img{
        max-width: 300px;
        height: auto;
    }

    
   
    /*Rules for naviagtion*/
    nav ul{
        list-style-type: none;
        text-align: center;
        background-color: #fc9292;
        padding: 10px 0;
        
    }
    
    nav li {
        display:inline-block;
        margin: 10px 0;
    }
    
    nav li a{
        color:#bd3f23;
        padding: 5px 10px;
        text-decoration:none;
        font-weight: bold;
    }
    
    nav a:hover{
        color: lightpink;
    }
    
    #hero-image img{
        width: 100%;
        height: auto;
    }

    /*Rules for general main*/
    
    main{
        padding: 20px;
        background-color:#FEC4B9;
        text-align: center;
    }
    
    button{
        font-size: 1em;
        font-weight: 600;
        font-family: 'Gamja Flower',serif;
        border-radius: 10px;
        border: none;
        background-color:#bd3f23;
        color: red;
        padding: 13px 30px;
        text-transform: uppercase;
    
    }


    /*style rules for index divs in main*/
    .title {
        text-align:center;
        font-size: 1.25em;
    	color: #fb6f92;
    }
    
    .container figure {
      display: flex 1 1 250px;
       display: block;
       border: 4px solid pink;
       box-shadow: 6px 6px 10px #c5a687;
       max-width: 300px;
       padding: 10px;
       margin:2% auto;
    }
    
    
    .product-card figure {
       display: flex 1 1 250px;
       display: block;
       border: 4px #bd3f23;
       
       box-shadow: 6px 6px 10px #c5a687;
       max-width: 300px;
       padding: 10px;
       margin:2% auto;
    }
    

    figure{
        display: block;
        background-color: #fff2f1;
        border-radius: 25px;
    }
    
    figure img{
        max-width: 100%;
        border-radius: 25px;
    }
    
    figcaption{
        text-align: center;
        border-radius: 25px;
        padding: 2%;
        border: 4px solid pink;
    }
    
    .cta-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .create{
        flex: 1 1 300px;
        max-width: 400px;
        text-align: center;
        border-radius: 25px;
        border: 2px solid #bd3f23;
        margin: 25px 50px 75px;
        background-color: lightpink;
        padding: 20px;
    } 
    

    /*style rules for collection*/
    
    main h1{
        text-align:center;
        font-style: 'Jua';
    }
    
    
    /*style rules for new Commissions divs on main*/
    
    #title h1{
            color: #fb6f92;
            margin-bottom: 20px
        }

    /*wrapper with floats*/
    #wrapper{
        overflow: hidden;
        padding: 20px;
    }
    
    #wrapper  img{
        float: left;
        width: 48%;
        height: auto;
        margin-right: 2%;
        border-radius: 10px;
    }
    
    /*image left*/
    
    /*info box*/
    #info-box{
        float: right;
        width: 48%;
    }
    
    /*Section*/
    section{
        background-color: #fcbbc1;
        padding: 20px;
        border-radius: 15px;
        border: 2px solid #bd3f23;
        margin-bottom: 20px;
    }
    
    /*Aside*/
    aside{
        background-color:  #ffe0e5;
        padding: 20px;
        border-radius: 15px;
        border: 2px solid #bd3f23;
    }
    
    /*Form styling*/
    #form label{
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

        
    /*Style rules for footer*/
    footer {
    	background-color: #ff9a8a;
    }
    
    footer p {
        font-size:0.75em;
        text-align:center;
        color:#bd3f23;
        padding:0 1em;
    }
    
    #contact{
    	text-align: left;
    	color:#bd3f23;
    }
    
    /*Media Query: Mobile Style Rule*/
    @media (max-width: 600px) {
        .cta-container{
            flex-direction: column;
            align-items: center;
        }
        
        .product-card figure{
            max-width: 100%;
        }
        
        header img{
            max-width: 200px;
        }
    }
    
    /*Media Query: Tablet Style Rule*/
    @media (max-width: 900px){
    nav li{
        display: block;
    }
    
    .product-card{
        justify-content: center;
        }
    }
    /*Media Query: Desktop Style Rule*/
