/*resetting default styles*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
img{
    max-width: 100%;
    width: 100%;
}
/*header*/
.blueBG{
    background-color: #075070;
    color: white;
    font-size: 15px;
}
.banner{
    margin-bottom: 45px;
}
header{
    padding: 20px 0 25px;
}
footer{
    padding: 65px 0;
    margin-top: 92px;
}
/*three Puppies section*/
.common-cont{
    width: 80%;
    margin: 0 auto;
}
.moretxt{
    padding: 65px 0 65px;
    font-size: 35px;
    font-weight: bold;
}
.puppy-1,{
    margin-bottom: 72px;
}
.puppy-3{
    margin-bottom: 65px;
}
.missing{
    display: none;
}
/*media*/
@media (min-width: 768px) {
    .container{
        display: flex;
        justify-content: space-between;
    }
    .missing{
        display: flex;
        background-color: #ed4d65;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        text-align: center;
        padding: 40px;
    }
    .puppy-1, .puppy-3{
        margin-bottom: 0;
    }
    .three > div{
        width: 32%;
    }
    .two > div{
        width: 48%;
    }
}