@charset "UTF-8";

.img-box {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.img-box a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}


@media screen and (max-width: 767px) {
    .img-box {
        max-width: 100%;
        margin: 20px 0;
    }
}
