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

body {
    background-color: beige;
}

h1 {
    text-align: center;
    padding-top: 30px;
}

section a {
    text-decoration: none;
}

.container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    justify-content: space-evenly;
    padding: 10px;
    margin-left: 30px;
    ;
}

article {
    text-align: center;
    text-shadow: 15px 8px 3px lightslategrey;
    padding: 10px;
    margin: 10px;
}

img {
    height: 170px;
    width: 400px;
}

@media (min-width:768px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
    img {
        height: 600;
    }
    article {
        text-align: center;
    }
}