body {
    font-family: "Poppins", Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 4vw 200px;
    background-color: #a2e1d6;
    line-height: 1.6;

    background: linear-gradient(
        to bottom,
        #98d4d4, /* Light teal/cyan from the top sky */
        #70c1b3, /* A slightly darker teal/green from the middle sky */
        #4a9c8b /* Mid-green from the foliage */
    );
}

h1, h2, h3 {
    font-family: 'Chicle', sans-serif, cursive;
    color: #333;
    font-weight: 400;
    font-style: normal;
    /* letter-spacing: 1px; */
}

h1 {
    font-size: 56px;
}
h2 {
    font-size: 36px;
    margin-block-end: 0;
}
h3 {
    font-size: 28px;
    margin-block-end: 0;
}
p {
    font-size: 16px;
    color: #333;

    margin-block-start: 16px;
}

.endpoint {
    background: #f4f4f4;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

a {
    font-weight: 600;
    /* color: #333; */
    color: #0066cc;
    transition: 250ms ease-in all;;
}

a:hover {
    color: #00356e;
    transition: 250ms ease-in all;;
}

.c-emoji {
    padding-inline-end: 8px;
    text-decoration: none;
}

hr {
    border: none;
    border-top: 1px solid #4a9c8b;
    border-bottom: 2px solid #98d4d4;
    margin: 1em 0;


}

.c-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 16px 0 32px;
}

.c-card-title {
    margin: 0;
}

.c-card-description {
    font-size: 16px;
    text-align: center;
    margin: 0 0 8px 0;
}
.c-card-description + .c-card-description {
    margin: 0 0 16px 0;
}

.c-card-cover {
    display: block;
    width: 333px;
    height: 500px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 16px;

    transition: border 250ms ease-in;

    @media screen and (max-width: 600px) {
        width: 280px;
        height: auto;
    }
}
a:hover .c-card-cover {
    border: 2px solid #d6f8f8;
}

.c-screenshot {
    display: block;
    margin: 0 auto;
    width: 300px;
}

