:root {
    --bkg: #FFCB91;
    --bkg-secondary: #FFEFA1;
    --primary: #3a998e;
    --secondary: #08ae21;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bkg);
    color: var(--primary);
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    z-index: 999;
    position: sticky;
    top: 0;
    padding: 1rem;
    background-color: var(--bkg-secondary);
}

h1, h2 {
    margin: 0;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: .3rem;
    margin: .5rem;
}

h2 {
    text-align: center;
    font-size: 1.5rem;
    margin: .5rem;
    letter-spacing: .2rem;
}

#navgrid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
}

a {
    text-decoration: none;
    color: var(--primary);
}

#active {
    color: var(--secondary);
}

.scroll-arrow {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--bkg-secondary);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
    z-index: 998;
}

#scroll-text{
    position: fixed;
    right: 2.3rem;
    bottom: 2.8rem;
    z-index: 999;
    font-size: 1.2rem;
    font-weight: bold;
}

#scroll-text:hover {
    color: var(--secondary);
}

#content {
    padding: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin: auto;
}

.float-right {
    float: right;
}

p {
    text-align: justify;
    font-size: 1.1rem;
}