
/* Below is the reset rule */
* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box; /* this makes it so 500px is truly 500px all around */
}

/* style rule */
body {
    background-color: hsl(28, 87%, 75%);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    text-align: center;
font-weight: normal;
text-transform: lowercase;
border-left: 4px solid #456;
border-bottom: 4px solid #456;
margin: 8px 8px 40px 8px;
padding: 8px;
transform: rotate(-3deg)

}

#samples-parent{
display: flex;
flex-flow: row wrap;
justify-content: space-between;
padding: 24px;
   }

   #samples-parent figure {
    border: 4px solid hwb(300 0% 47%);
    min-height: 200px;
    flex-basis: 30%;
    margin-bottom: 16px;
    
   }

   #samples-parent figure:nth-child(1){
    border-radius: 40px;
   }

   #samples-parent figure:nth-child(2){
    border-color: rgb(237, 59, 9);
   }

   #samples-parent figure:nth-child(3){
    background-color: antiquewhite;
   }

    #samples-parent figure:nth-child(4){
        background-image: linear-gradient(red, pink, orange);
   }


#samples-parent figure:nth-child(5){
    background-image: radial-gradient(red, blue, orange);
}


#samples-parent figure:nth-child(6){
    background-image: repeating-radial-gradient(red, pink, green);
}

    #samples-parent figure:nth-child(7){
        background-image: repeating-radial-gradient(red, pink, green);
        color: #eeeeee;
    font-family: "League Gothic", Impact, sans-serif;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0px 0px 6px ;
    font-size: 50px;
    
}


#samples-parent figure:nth-child(8){
    border-style: dashed;

}


#samples-parent figure:nth-child(9){
    border-style: double;

}


#samples-parent figure:nth-child(9){
    color: #eeeeee;
    font-family: "League Gothic", Impact, sans-serif;
    text-transform: uppercase;
    text-shadow: 0px 0px 6px ;
    font-size: 50px;
}