* {
    box-sizing: border-box;
}



body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    color: #404040;
    text-align: center;
}



/*****************************

        Typography

******************************/


h1 {
    font-size: 2.25rem; /* 2.25rem * 16px = 36px*/
    font-weight: 300;
    color: #fff;
    margin: 0;  /* 2em * 36px(relative to the parent) = 72px */
}

h1 + p {
    color: #f18119;
    font-weight: 900;
    font-size: 1.3125rem;
    margin: 0;
}

h2 {
    font-size: 1.3125rem;
}

h2 + p {
    color: #f18119;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
}
.top-text {
    font-size: 0.625rem;
    font-weight: 900;
    color: #f18119;
    order: -1;
    text-transform: uppercase;
    border-top: 5px solid #f18119;
    margin: 0;
    padding-top: 2px;
    border-image: linear-gradient( to left, #ff713b, #ffa51d) 1;
}

.fine-print {
    font-size: 0.625rem;
    letter-spacing: 1px;
}

strong {
    font-weight: 900;
}

/*****************************

        Intro Section 

******************************/

.intro {
    background-image: url('/images/dark-ribs.jpg');
    background-size: cover;
    background-color: #404040;
    /* background-blend-mode: screen; */
    background-position: center;
    padding: 0 .5em 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vh;
}

.top-text {
    order: -1;
}


/*****************************

        Flexbox-Container 

******************************/






/*****************************

        Main-Content 

******************************/


.main-content {
    padding: 2em 1em;
}

.right-title {
    margin: 0;
}

.sub-title {
    text-transform: uppercase;
    margin: 0;
}

.right-info {
    margin: 2em 1em;
}

.intro > * , .main-content > * {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/*****************************

        Form Styles

******************************/


.email-collector {
    /* border: 3px solid lightgreen; */
    max-width: 300px;
    width: 80%;
}

input, .btn {
    width: 100%;
}

input {
    margin-bottom: 10px;
    text-align: center;
    padding: 4px;
    border-radius: 7px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #818181;
    height: 37px;
    transform: scale(1);
    transition: transform 250ms;
}

input:focus {
    transform: scale(1.1);
}

.btn {
    display: inline-block;
    padding: 1em 1.5em;
    font-size: 0.65rem;
    text-transform: uppercase;
    border: 0;
    border-radius: 6px;
    color: #fff;
    height: 37px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}


.btn-primary {
    background:transparent linear-gradient(to left, #FF713B, #FFA51D);
    transform: scale(1);
    color: #fff;
    transition: background-color 250ms;
}

.btn-primary:hover, .btn-primary:focus {
    transform: scale(1.1);
}


/*****************************

        Media Query

******************************/

@media (min-width: 500px) {
    body {
        font-size: 1.125rem;
        display: flex;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2, h1 + p {
        font-size: 1.75rem;
    }

    .intro, .main-content {
        width: 50%;
        min-height: 100vh;
    }

    .main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}