@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #1b4332;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.page {
    min-height: 100vh;
}

.page.is-sticky {
    padding-top: var(--sticky-header-height, 0px);
}

.gradient-container {
    background-image: linear-gradient(
        180deg,
        rgb(27, 67, 50) 4.8544%,
        rgb(45, 106, 79) 33.245%,
        rgb(45, 106, 79) 70.42%,
        rgb(27, 67, 50) 115.84%,
        rgb(64, 145, 108) 128.45%
    );
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
}
