* {
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    color: #404040;
    text-align: center;
}

/*Typography*/

h1 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 300;
    margin: 0;
}

h1 + p {
    color: #F18119;
    font-weight: 900;
    font-size: 1.3125rem;
    text-transform: uppercase;
    margin: 0;
}

h2 {
    font-size: 1.3125rem;
    margin: 0;
}

h2 + p {
    color: #F18119;
    font-weight: 900;
    font-size: 1rem;
    margin-top: 0;
    text-transform: uppercase;
}

.top-text {
    margin-top: 0;
    padding-top: 2px;
    font-size: 0.625rem;
    font-weight: 900;
    color: #F18119;
    text-transform: uppercase;
    letter-spacing: 1px;
    order: -1;
    border-top: 5px solid #F18119;
    border-image: linear-gradient(to right, #ff713b, #ffa51d) 1;
}

.fine-print {
    font-size: .625rem;
    letter-spacing: 1px;
}

/*Intro section*/
.intro {
    background-color: #404040;
    background-image: url("images/dark-ribs.jpg");
    background-size: cover;
    background-position: center;
    padding: 0 .5em 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vh;
}

/*main-content section*/
.main-content {
    padding: 2em 1em;
}

.intro > *,
.main-content > * {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


/*form*/
.email-collector {
    width: 80%;
    max-width: 300px;
}

input,
.btn {
    font-family: inherit;
    text-align: inherit;
    width: 100%;
    padding: .5em .7em;
    margin-bottom: 1em;
    border-radius: 50px;
}

input {
    border: 1px solid #404040;
    transform: scale(1);
    transition: transform 250ms;
}

input:focus {
    transform: scale(1.075);
}

.btn {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    background-color: orange;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-image: linear-gradient(45deg, orange, orangered);
    transform: scale(1);
    transition: .3s;
}

.btn-primary:hover,
.btn-primary:focus {
    color: white;
    transform: scale(1.1);
}


/*media queries*/
@media (min-width: 700px) {
    body {
        font-size: 1.125rem;
        display: flex;
    }

    .intro,
    .main-content {
        width: 50%;
        min-height: 100vh;
    }

    .main-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2,
    h1 + p {
        font-size: 1.75rem;
    }
}



















