body {
    color: #2b283a;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

/* ----- TYPOGRAPHY ----- */

h1,
h3 {
    margin: 0;
}

h1 {
    color: whitesmoke;
    font-size: 1.75rem;
}

h2 {
    color: #451c7a;
    font-size: 1.27rem;
    margin-top: 0;
}

h3 {
    font-size: 1.2rem;
}

p {
    line-height: 1.5;
}

.subheading {
    display: block;
    font-size: .9rem;
    color: #d0aaff;
}

.section-two h2 {
    color: inherit;
}

/* ----- LINKS ----- */

a {
    color: #ef5839;
    text-decoration: underline dotted;
}

a:hover,
a:active {
    color: #d4b44c;
}

.btn {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 0.5em 1em;
    margin-bottom: 1em;
    border-radius: 4.6px;
}

.btn-dark {
    color: whitesmoke;
    background: #5f29a3;
}

.btn-mid {
    color: #5f29a3;
    background: #f0e0ff;
}

.btn-light {
    color: #5f29a3;
    background: whitesmoke;
}

.btn:hover,
.btn:active {
    color: #2b238a;
    background-color: #f3e885;
}

/* ----- LAYOUT ----- */



header,
section,
footer {
    padding: 1.25em 0;
}

header,
.section-two {
    background-color: #5f29a3;
}

.section-two {
    color: whitesmoke;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    display: block;
    max-width: 600px;
    margin: 0 auto 2em;
}

.section-two-image-container {
    display: flex;
    flex-direction: column;
}

.feature-image {
    border-radius: 4.6px;
    margin-bottom: 1em;
}

footer {
    text-align: center;
    color: #5f29a3;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.13rem;
    padding: .85em 0;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}



/*=========MEDIA QUERIES==========*/

@media screen and (min-width:480px) {
    .section-two-image-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .feature-image {
        width: 48.8%;
    }

}

@media screen and (max-width: 767px) {
    header {
        text-align: center;
    }

    nav {
        margin-top: 1.5em;
    }

    li:not(:last-child) {
        border-bottom: 1px dotted #a190b6;
    }
}

@media screen and (min-width: 768px) {

    header,
    section,
    footer {
        padding: 2.875em 0;
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav li {
        display: inline-block;
        margin-right: 1.2em;
    }

    .btn {
        display: inline-block;
        margin-right: .5em;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .subheading {
        font-size: 1.25rem;
    }

    p {
        font-size: 1.125rem;
    }
}