*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    margin: 0;
    body {
        background-color: rgb(217, 234, 240);
      }
}
h1{
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
    padding:20px;
    font-family: sans-serif;
    background-color: #0a0a23;
    color: #f5f6f7;
    

}
.images-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    float:left;
}

img{
    padding: 10px;
    border-radius: 20px;
    width: 200px;
    height: 300px;
    object-fit: cover;
    transition:.7s ease all ;
    transition: transform .1s;

}
img:hover{
    -ms-transform: scale(0.1);
    -webkit-transform: scale(5.5);
    transform: scale(1.5);
}
@media only screen and (max-width: 600px) {
    body {
      background-color: rgb(230, 248, 254);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 20px;
    }
}
@media only screen and (max-width: 768px) {
    body {
      background-color: rgb(230, 248, 254);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 30px;
    }
    img{
        width: 230px;
        height: 300px;
    }
}

@media only screen and (max-width: 375px) {
    body {
      background-color: rgb(184, 219, 230);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 20px;
    }
    img{
        width: 150px;
        height: 200px;
    }
}
@media only screen and (max-width: 477px) {
    body {
      background-color: rgb(213, 233, 239);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    img{
        width: 200px;
        height: 300px;
    }
    h1{
        font-size: 20px;
    }
}
@media only screen and (max-width: 418px) {
    body {
      background-color: rgb(213, 233, 239);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    img{
        width: 180px;
        height: 270px;
    }
    h1{
        font-size: 20px;
    }
}
@media only screen and (max-width: 390px) {
    body {
      background-color: rgb(217, 234, 240);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 20px;
    }
    img{
        width: 150px;
        height: 200px;
    }
}
@media only screen and (max-width: 323px) {
    body {
      background-color: rgb(217, 234, 240);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 16px;
    }
    img{
        width: 130px;
        height: 180px;
    }
}
@media only screen and (max-width: 280px) {
    body {
      background-color: rgb(217, 234, 240);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 16px;
    }
    img{
        width: 110px;
        height: 150px;
    }
}
@media only screen and (max-width: 240px) {
    body {
      background-color: rgb(217, 234, 240);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 14px;
    }
    img{
        width: 80px;
        height: 120px;
    }
}
@media only screen and (max-width: 204px) {
    body {
      background-color: rgb(217, 234, 240);
    }
    img:hover{
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    h1{
        font-size: 12px;
    }
    img{
        width: 80px;
        height: 120px;
    }
}