html,
body {
    height: 100%;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

body {
    background: #f4fbf4;
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 600;
}

a,
a:hover,
a:focus {
    color: #000;
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    gap: 24px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-slogan {
    color: black;
    font-size: 2.4rem;
    text-shadow: 2px 2px 5px #50c878;
    text-align: center;
}

.sub-slogan {
    color: black;
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.list {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta {
    display: flex;
    text-align: center;
    background-color: #228b22;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.75em 2em;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.2);
    transition:
        background 0.2s,
        box-shadow 0.2s,
        transform 0.1s;
    cursor: pointer;
}

.cta:hover,
.cta:focus {
    background-color: #228b22;
    box-shadow: 0 4px 16px rgba(34, 139, 34, 0.3);
    transform: translateY(-2px) scale(1.03);
    color: #fff;
    text-decoration: none;
}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
}

.footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}
