:root {
    --orange: #fb8806;
    --yellow-orange: #fbaf0a;
    --mild: #fba35a;
    --syrup: #e75304;
    --dark: #a92d04;
    --beige1: #dbccbf;
    --beige2:  #f3efeb;
    --browntext: #876b05;
    --darktext: #333333;
}

* {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
}

#content {
    padding-bottom: 74px;
}

nav li{
    display: inline;
    margin: 0 15px;
}

nav a:hover{
    color: white;
}

nav a{
    text-decoration: none;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 28px;
}

nav a:visited{
    color: white;
}

nav ul{
    padding: 0;
    margin: 15px;
}

nav {
    width: 100%;
    display: grid;
    grid-template-columns: max-content auto;
    justify-content: center;
    background-color: #a92d04;
    color: white;
    align-items: center;
}

#image1{
    background-image: url(../images/image1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 100%;
    height: 20rem;
}

#nav-logo {
    width: 55px;
}

#main-container {
    display: flex;
    flex-direction: column;
    margin-left: 20%;
    max-width: 1100px;
}

#sub-nav a{
    font-size: 28px;
}

h1 {
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
}

h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
}

#main {
    width: 70%;
}

p {
    font-size: 18px;
    line-height: 1.3;
}

#signup {
    width: fit-content;
    border: 1px solid black;
    background-color: #fbaf0a;
    font-size: 18px;
    padding: 10px;
    margin: 10px 5px;
}

#signup a {
    text-decoration: none;
    color: black;
    padding: 10px;
    margin: -10px;
}

footer {
    display: grid;
    grid-template-columns: auto auto;
    position: absolute ;
    bottom: 0;
    width: 100%;
    background-color: #a92d04;
}

#copyright{
    color: white;
    text-align: center;
    position: relative;
}

#copyright {
    position: absolute;
    right: 5px;
    bottom: 0;
}

#amznCharityBanner {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 768px){
    nav a {
        font-size: 22px;
    }

    nav li {
        display: block;
        margin-top: 10px;
    }

    #main-container {
        margin-left: 0;
    }

    #main{
        margin-left: auto;
        margin-right: auto;
    }
}