* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

html {
    background-color: rgb(246, 247, 203);
}

header {
    background-color: rgb(246, 247, 187);
    box-shadow: 0px 2px 4px;
    padding: 25px 0;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 899.333px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1 {
    font-size: 2em;
    text-shadow: 1px 2px 2px;
    cursor: default;
    padding-left: 20px;
}

h1, h2 {
    color: rgb(17, 66, 50);
}

h2 {
    padding-left: 10px;
    margin-bottom: 70px;
}

section {
    margin-bottom: 50px;
}

nav a {
    font-size: 1em;
    text-decoration: none;
    margin-right: 30px;
    width: 190px;
    height: 75px;
    padding: 36.5px;
    color: rgb(135, 169, 34);
    /* background-color: rgb(135, 169, 34);
    border: 1px solid rgb(135, 169, 34); */
    border-radius: 5px;
}

nav a:hover {
    background-color: rgb(135, 169, 34);
    color: white;
    transition: all .4s ease;
}

nav a:active {
    background-color: rgb(84, 102, 31);
    transition: none;
}

main {
    margin-top: 115px;
}

.cssDisclaimer {
    text-align: center;
    margin-top: 15px;
}

p:not(.cssDisclaimer) {
    margin-left: 10px;
}
