body {
        background: linear-gradient(180deg, #876fb1, #2e93c5);
        height: 100vh;
        margin: 0;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "museo-sans-rounded", sans-serif;
}

#logo {
    width: clamp(1rem, 20vw, 4rem);
    padding: .5rem;
}

/* a tag Styling */
a {
    color: black;
    font-size: medium;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    margin-left: .5rem;
}

a:hover {
    text-decoration: underline;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10rem;
}

.one, .two {
    width: 35vw;
}

main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    padding: 10rem;
    background-color: black;
}

.grid-item {
    grid-column: span 4;
    padding-bottom: 3rem;
}

/* Headings */
h1 {
    font-family: 'Titania', sans-serif;
    font-size: clamp(3rem, 3vw, 3.25rem);
    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;
}

p {
    font-family: "museo-sans-rounded", sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: clamp(1.25rem, 8vw, 2rem);
    font-weight: 100;
    color: black;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 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;
}