body{
  background-color: #9ccc65;
}
h1{
    color: #fff;
    font-size: 3.5rem;
}
.logo{
    height:5rem;
}
.content{
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: space-around;
    height: auto;
    text-align: center;
    

}
.content img{
    height: 40%;
    width: 40%;
}
@media (max-width: 992px) {
    h1 {
        font-size: 4rem;
    }
    .content {
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-top: 40%;
    }
    .content img {
        height: 50%;
        width: 60%;
    }
}
@media (max-width: 500px) {
    h1 {
        font-size: 2.3rem;
    }
    .content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-top: 30%;
    }
    .content img {
        height: 80%;
        width: 90%;
    }
}