html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
    background-color: mediumseagreen;
}

body {
    display: grid;
    grid-template-rows: min-content minmax(0,1fr);
    position: fixed;
    inset: 0;
    inset: env(safe-area-inset-top) 0 0 0;
    margin: 0;
    background-color: #f8fbef;
    font-family: helvetica, arial, sans-serif;
    font-weight: bold;
    color: #585858;
}

nav {
    background: #f8fbef;
    padding: 10px;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    margin: 0;
    color: mediumseagreen;
}

    nav a {
        color: mediumseagreen;
        text-decoration: none;
        margin-right: 50px;
    }

        nav a:hover {
            color: #585858;
        }


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: mediumseagreen;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #585858;
    }

.button {
    display: inline-block;
    border: 1px MediumSeaGreen;
    font-weight: normal;
    color: #FFFFFF;
    border-radius: 5px;
    background-color: MediumSeaGreen;
    font-size: 16px;
    padding: 5px 12px;
    box-shadow: 0 0 8px 0 #308F5A;
    margin: 0px 0px;
    margin: 5px;
    text-decoration: none;
}