body {
    background-color: #dedede;
}

h1 {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 32px;
}

a {
    color: #000;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

p {
    font-size: 25px;
    font-family: Arial, sans-serif;
    text-align: center;
}

img {
    width: 100%;
}

div img {
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
}

/* Mobile base — full width, stacked */
div {
    display: block;
    width: 90%;
    margin: 5px auto;
    padding: 2px;
}

/* Tablet View — 772px */
@media (min-width: 772px) {
    div {
        display: inline-block;
        width: 45vw;
    }

    div img {
        width: auto;
        height: auto;
        max-height: 30vh;
    }
}

/* Large Screen View — 998px */
@media (min-width: 998px) {
    div {
        width: 30vw;
    }
}