body {
    font-family: "Source Sans Pro", "Source Sans Pro Fallback";
    margin: 0;
    padding: 0;
    background: #0d1117;
    color: #f0f6fc;
    font-size: 18px;
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.recipe-list {
    display: flex;
    justify-content: center;
}

#recipes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

a.recipe {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #f0f6fc;
    text-decoration: none;
    color: #f0f6fc;
    border-radius: 4px;
    white-space: nowrap;
}

a.recipe:hover {
    transform: scale(1.1);
}

.icon-link {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.icon-link img {
    width: 18px;
    height: 18px;
}

footer {
    text-align: center;
    font-size: 1rem;
}