* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-wrap: wrap;
}

.img {
    width: 400px;
    height: 300px;
    margin : 0px 20px;
    object-fit: cover;  
}

button {
    position: absolute;
    transition: all .7s;
    top : 20%;
    left : 50%;
    transform: translate(-20%, -50%);
    padding: 10px 20px;
    background-color: #f4f4f4;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 10px;
}

button:hover {
    background-color: #000;
    color: #fff;
}
