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

html, body {
    height: 100vh;
}

/* Grid */
section {
    height: inherit;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
}

/* element */
section > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    transition: 0.5s;
}
section > div:hover {
    background-color: #d336723e;
}

section > div img {
    width: auto;
    max-height: 400px;
}
@media only screen and ( max-width: 768px ) {
    section > div img {
        max-width: 60%;
    }
}

.btn {
    padding: 1em 2em;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    text-decoration: none;
    color: #000;
    border: solid 1px #c4c4c4;
    border-radius: 0;
    background-color: #fff;
    transition: 0.5s;
}
.btn:hover {
    background-color: #d33673;
    border-color: #d33673;
    color: #fff;
    transform: scale(1.2);
}