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

#move {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    width: 100%;
    font-size: max(3vw, 1.0em);
    text-align: center;
    background-color: black;
    color: white;
    margin-bottom: 2rem;
}

.image {
    width: 100%;
    margin: auto;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.image img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.image::after {
    content: "";
    width: 350px;

}