*{
    padding: 0;
    margin: 0;
}
span{
    font-weight: bolder;
    color: blue;
    font-size: 28px;
}
.body hr{
    width: 3px;
    height: 8rem;
    color: black;
    background-color: black;
    border: 0px;
    margin: 0px auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-style: dotted;
}
.main{
    background-color: grey;
    padding: 5rem 12rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.head{
    text-align: center;
}
.head h1{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 50px;
    letter-spacing: 3px;
    margin-top: 2rem;
}
.head p{
    font-size: 21px;
    word-spacing: 2px;
    margin-bottom: 5rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.body{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.box{
    height: 20rem;
    padding: auto 1rem;
    display: flex;
    flex-direction: row;
}
.box img{
    height: 20rem;
    width: 32rem;
    border: 3px solid white;
    border-bottom: 4px solid black;
    border-right: 4px solid black;
    margin-right: 3rem;
    border-radius: 16px;
}
.box img:hover{
    transform: scale(1.1);
    transition: 1s;
    border-bottom: 6px solid white;
    border-right: 6px solid white;
    border-top: 6px solid black;
    border-left: 6px solid black;
    margin-right: 4rem;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}
.content{
    text-align: justify;
}
.content h2{
    color: #4dff88;
    word-spacing: 5px;
    letter-spacing: 1px;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 2rem;
}
.content p{
    font-style: italic;
    font-size: 19px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: white;
    font-weight: bold;
}
.content button{
    height: 2.5rem;
    width: 10rem;
    margin-top: 1rem;
    border: 0px;
    border-radius: 5rem;
    background-color: #4dff88;
    outline: none;
    cursor: pointer;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bolder;
    font-size: 19px;
}
.content button:hover{
    transform: scale(1.1);
    transition: 1s;
    color: black;
    background-color: aqua;
}