@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --viewport-height: 100vh;
}
html {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

html,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.canvas {
    background-color: rgb(8, 87, 3);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-header {
    height: var(--viewport-height, 100vh);
    position: relative;
    display: grid;
    place-items: center;
}

.heading-container {
    padding: 18px clamp(16px, 2vw, 48px);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 1;
    /* height: 100%; */
    backdrop-filter: blur(4px);
    border-radius: 18px;
    mix-blend-mode: exclusion;
}

.heading-container h1 {
    font-size: clamp(32px, 6vw, 72px);
    font-family: "Poetsen One", sans-serif;
    margin-bottom: clamp(8px, 1vw, 24px);
    /* background: -webkit-linear-gradient(#001fa8, #51005e); */
    /* background: -webkit-linear-gradient(#ffffff, #00df55); */
    background: -webkit-linear-gradient(#bde967, #92ec86);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading-container p {
    font-size: clamp(16px, 1.5vw, 28px);
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    color: #99b8b9;
    margin-bottom: clamp(12px, 1.5vw, 32px);
}

.heading-container a {
    font-size: clamp(14px, 1.5vw, 18px);
    padding: 0.8em 1.5em;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #2e3919;
    text-decoration: none;
    display: inline-block;
    color: rgb(205, 205, 205);
    transition: background-color 200ms ease-out, color 200ms ease-out;
}

.heading-container a:hover {
    background: #a2c957;
    color: rgb(32, 32, 32);
    cursor: pointer;
}

.semibold {
    font-weight: 500;
}
.author {
   color: #dbd900;
}

.action-pointer {
    color: #878684;
    font-style: italic;
    font-size: 1.125em;
}


.settings-container {
    position: fixed;
    border-radius: 12px;
    background: white;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    box-shadow: 1px 1px 5px 0px rgb(131 131 131 / 22%);
    padding: 1rem;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap:1rem;
    width: calc(100vw - 2rem);
    max-width: 350px;
    font-size: clamp(12px, 1.5vw, 16px);
}

.settings-container label {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.25em 0;
    font-size: 0.8em;
    cursor: pointer;
}

.settings-container-heading {
    margin-bottom: 0.5em;
    font-weight: 500;
    font-size: 1em;;
}