body {
    background-image: linear-gradient(to right, hsl(180, 100%, 85%), hsl(240, 100%, 85%));
    max-height: 100%;
}

h1 {
    text-align: center;
    padding: 5px;
    color: red;
    background-color: purple;
    box-shadow: 0 4px 8px 0 hsl(0, 0%, 20%);
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

h2 {
    font-family: 'Courier New', Courier, monospace;
}

.card {
    box-shadow: 0 4px 8px 0 hsl(0, 0%, 20%);
    border-radius: 10px;
    margin: 10px;
    max-width: 200px;
    background-color: hsl(0, 0%, 95%);
}

.container {
    padding: 2px 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: space-evenly;
}

@media (max-width: 500px) {
    body {
        background-image: linear-gradient(to left, hsl(0, 100%, 80%), hsl(60, 100%, 90%));
    }
    .card {
        background-color: black;
        color: white
    }
}