body {
    margin: 40px auto;
    max-width: 600px;
    line-height: 1.6;
    font-size: 1.1em;
    color: #333;
    padding: 0 10px;
    font-family: Georgia;

    background-color: #d0eeff;
    background-image: url("images/clouds.png");
    background-position: center top;
    background-repeat: repeat-y;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
    margin: auto;
    border-radius: 4px;
}

.gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 10px;
    width: 100%;
}

.gallery img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    justify-self: center;
    align-self: center;
    display: block;
}

/**/
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    border-radius: 0px;
    height: auto;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

.card-content {
    padding: 1rem;
}

.card-title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
}

.card-text {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}