@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    background: #ccc;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

.title {
    color: #111;
    margin: 10px 0 0;
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    align-items: center;
    justify-content: center;
}

.container img {
    margin: 10px;
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
