*{
    margin: 0;
    padding: 0;
    background-color:#ff7900;
}

h1{
    font-size: 50px;
    margin-top: 20px;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    text-align: center;
}
h1{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    column-gap: 5px;
    padding-left: 50px;
    padding-right: 50px;
}
h1::before, h1::after{
    content: "";
    height: 2px;
    background-color: black;
    display: block;
}
div{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    height: auto;
    width: auto;
}
 img{
    display: flexbox;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 300px;
    width: 300px;
    justify-content: space-between;
    border-left:10px solid black;
    border-top:10px solid black;
    border-right:10px solid transparent;
    border-bottom:10px solid transparent;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}
img:hover{
    transform: scale(1.09);
    transition: 0.6s;
}


