.container{
    height: 100vh;
    display: grid;
    place-items: center;
}
.box{
    width: 375px;
    height: 150px;
    background: #a1d569;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 10px;
    box-shadow: 1px 1px 20px #696969;
}
.box img{
    width: 120px;
    height: 120px;
}
.boomer{
    display: none;
    width: 375px;
    height: 150px;
    border-radius: 10px;
    background: #a1d567;
    text-align: center;
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.boomer-title{
    line-height: 150px;
    margin: 0;
    font-family: sans-serif;
    font-size: 5rem;
    font-weight: 400;
}
@media screen and (min-width:572px){
    .box{
        width: 500px;
        height: 200px;
    }
    .box img{
        width: 150px;
        height: 150px;
    }
    .boomer{
        width: 500px;
        height: 200px;
    }
    .boomer-title{
        line-height: 200px;
        font-size: 7rem;
    }
}