
body {
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-left: 100px;
    margin-right: 100px;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
}

li {
    list-style: none; 
}



.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0px 15px;
}

.nav {
    width: 100%;
    height: 100px;
}

.website-name {
    font-size: 2.4rem;
    color: black;
    margin-left: -90px;
    font-weight: 600;
}

.nav-container {
    width:100%;
    height: 100%;
    display: flex;
    justify-content: space space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    margin-left: 550px;
}

.nav-item {
    margin: 0px 10px;
    height: 0px;
}

.nav-text {
    color: black;
    font-weight: 700;
}

.nav-text:hover {
    color: brown;
    transition: 0.3s linear;
    text-decoration: underline;
}

.header {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

#header-text {
    color: brown;
    position: absolute;
    right: 200px;
    top: 300px;
}

#shopButton {
    position: absolute;
    right: 175px;
    border-radius: 6px;
    background-color: brown;
    color: white;
    padding-top: 16px 30px;
    transition: 0.2s;
    border: none;
    width: 100px;
    height: 50px;
}

#shopButton:hover {
    box-shadow: 0 0 0 4px white, 0 0 0 8px brown;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}

.grid-container-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 0px;
    grid-column-gap: 40px;
}

.grid-item-about-1 {
    grid-column: span 2;
    text-align: center;
    margin-left: 165px;
    margin-right: 165px;
}

.about-text {
    padding-top: 50px;
}

.footer {
    font-size: .70rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    grid-row: 5 / 6;
    grid-column: 2 / -2;
    padding: 15px;
    background-color: brown;
    font-size: 15px;
    margin-top: 10px;
    color: white;
}

.subheading {
    padding-top: 10px;
}


