*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

#image-container{
    min-height: 100vh;
    width: 100%;
    position: relative;
}

#image-container h1{
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 2vh;
}

#images{
    display: flex;
    justify-content: space-evenly;
}

img{
    width: 450px;
    height: 400px;
    background-color: red;
    object-fit: cover;
    border-radius: 20px;
    object-position: center;
    transition: all ease 0.5s;
}

img:hover{
    transform: scale(1.07);
    /* transition: all ease 0.5s; */
}