:root {
    --primary: #657C50;
    --primary-dark: #50623f;
    --primary-light: #718a59;

    --secondary: #9EC17D;
    --secondary-dark: #87a56a;
    --secondary-light: #afd68a;

    --background-color: #FFFFFF;

    --primary-text-color: #000000;
    --secondary-text-color: #bcbcbc;
    --text-grey: #979797;

    --devider-color: #757575;

    --success-green: rgb(106, 214, 64);
    --error-red: rgb(214, 64, 64);
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

a { text-decoration: none;}

ul { list-style: none;}

.such-section {
    background-color: var(--primary);
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.such-headline {
    color: white;
    font-size: 2.5rem;
    text-align: center;
}

.such-button {
    padding: 16px 36px;
    border: none;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.such-button:hover {
    transition: .3s;
    background-color: var(--secondary-dark);
    cursor: pointer;
}

@media screen and (max-width: 670px) {
    .such-headline {
        font-size: 1.5rem;
    }
}