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;
}

img {
    width: 100%;
}

p {
    text-align: center;
}

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

div {
    display: inline-block;
    width: 24%;
    margin: 5px;
    padding: 2px;
}

/* Tablet View: 772px */
@media all and (max-width: 772px) {
    div {
        display: inline-block;
        width: 45%;
        /* Set div width to 45% */
        margin: 5px;
        padding: 2px;
    }

    div img {
        width: auto;
        /* Adjust width of images to maintain aspect ratio */
        max-height: 30vh;
        /* Limit image height to 30% of the viewport height */
    }
}

/* Large Screen View: 998px */
@media all and (min-width: 998px) {
    div {
        display: inline-block;
        width: 30%;
        /* Set div width to 30% */
        margin: 5px;
        padding: 2px;
    }
}