body {
        background: linear-gradient(180deg, #876fb1, #2e93c5);
        height: 100vh;
        margin: 0;
}


/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    width: clamp(1rem, 20vw, 4rem);
    padding: .5rem;
}

/* a tag Styling */
a {
    color: black;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    font-family: "museo-sans-rounded", sans-serif;
    font-size: 1rem;
}

a:hover {
    text-decoration: underline;
}


/* Website Grid 1/Header */
header {
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 5rem 0;
}

.header-content {
    grid-column: 2 / 4;
}

.header-image {
    grid-column: 4 / 6;
}

/* Headings */
h1 {
    font-family: 'Titania', sans-serif;
    font-size: clamp(2rem, 2.75rem, 3rem);
    font-weight: bold;
    color: black;
    text-transform: uppercase;
}

h2 {
    font-family: 'Titania', sans-serif;
    font-size: clamp(1.25rem, 2vw, 2rem);
    color: white;
    text-transform: uppercase;
    margin-left: 3rem;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 200;
    color: black;
}

p {
    font-family: "museo-sans-rounded", sans-serif;
    font-size: clamp(1rem, 1rem 1.25rem);
    line-height: clamp(rem, 1rem, 1.25rem);
    font-weight: 100;
    color: black;
}

/* Button Styling */
button {
    display: inline-block;
    font-family: "museo-sans-rounded", sans-serif;
    font-size: clamp(1rem, 1.15rem, 2rem);
    padding: 1rem 1.5rem;
    color: black;
    background: transparent;
    border: 1px solid black;
    border-radius: 5rem;
    text-transform: uppercase;
    margin-right: 1rem;
    cursor: pointer;
}

button:hover {
    color: white;
    background: black;
}

/* Website Grid 2/Main */
main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: black;
    padding-top: 3rem;
}

.grid-item {
    margin: clamp(1rem, 1.15rem, 2rem);
}

.grid-item img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: #f1ede2;
    text-align: center;
}

footer img {
    width: clamp(12rem, 32vw, 19rem);
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.copyright {
    text-transform: uppercase;
    font-family: "museo-sans-rounded", sans-serif;
    font-size: 1rem;
    padding: 1rem;
}


@media screen and (max-width: 635px) {
.nav-links {
    display: none;
}

.header-content, .header-image {
    margin: 1.25rem;
    grid-column: 1 / 7;
}

    /* Website Grid 2/Main */
main {
    display: grid;
    margin: 0;
    grid-template-columns: 1fr;
    background-color: black;
}

button {
    margin-bottom: 1rem;
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
}

.grid-item {
    margin: 1rem;
}

}