
body {
	margin:0px;
	box-sizing: border-box;
    font-size: 14px;
}

.storygram-demo {
    display: inline-block;
    width: 100%;
    padding: 5%;
    box-sizing: border-box;
    min-height: 50em;
}

/*Storygram Left*/

.storygram-left {
    display: inline-block;
    float: left;
    width: 50%;
    text-align: right;
    padding: 0em 3em;
    box-sizing: border-box;
}

/*Storygram Right*/

.storygram-right {
    display: inline-block;
    float: left;
    width: 50%;
    text-align: left;
    padding: 0em 3em;
    box-sizing: border-box;
}

h1.storygram-header {
    font-family: Cookie;
    -webkit-animation: colorchange 1s infinite alternate;
    font-size: 3em;
    margin: 0;
}

.storygram-left p {
    font-family: Roboto Condensed;
    font-family: Open Sans;
    color: #2d2d2d;
    margin: 1em 0em;
    display: inline-block;
    float: right;
    clear: both;
}


.storygram-left ul {
    font-family: Roboto Condensed;
    font-family: Open Sans;
    color: #2d2d2d;
    margin: 1em 0em;
    border-left: 4px solid pink;
    float: right;
    text-align: left;
    display: inline-block;
    clear: both;
    padding-left: 40px;
}

.storygram-left li {
    margin-bottom: 0.2em;
}

/*Storygram Live Edit*/

.storygram-live-edit {
    background-color: pink;
    display: inline-block;
    padding: 2em;
    font-family: Roboto Condensed;
    max-width: 100%;
}

.storygram-live-edit span {
    color: #E91E63;
}

/*.storygram-live-edit input[type="text"] {
    font-family: Roboto Condensed;
    padding: 0.3em;
    margin-top: 0.3em;
    margin-bottom: 0.8em;
    margin-left: 0.3em;
    font-size: 13px;
}*/

.storygram-live-edit input[type="text"] {
    font-family: Roboto Condensed;
    padding: 0.2em 0.6em;
    margin-top: 0.3em;
    margin-bottom: 0.8em;
    margin-left: 0.6em;
    font-size: 13px;
}

.stogram-show {
    font-family: Roboto Condensed;
    background-color: #E91E63;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
    margin-top: 1em;
    padding: 0.5em 1em;
    color: white;
    font-size: 1em;
    cursor: pointer;
}

.storygram-hashtag-add {
    color: #ffffff;
    background-color: #E91E63;
    margin-left: 0.5em;
    border-radius: 100%;
    padding: 0.43em 0.45em 0.35em 0.48em;
    font-size: 0.7em;
    cursor: pointer;
}

.stogram-show i {
    font-size: 0.95em;
    margin-right: 0.3em;
}


/*Storygram Download*/

.storygram-download {
    background-color: #E91E63;
    padding: 5em;
    text-align: center;
}

.storygram-download-button {
    font-size: 2em;
    font-family: Cookie;
    font-weight: bold;
    background-color: white;
    color: #545454;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
    padding: 0.8em 1.2em;
    display: inline-block;
}

.storygram-download-left {
    float: left;
    font-size: 0.9em;
    display: inline-block;
    margin-right: 0.25em;
    line-height: normal;
}

.storygram-download-left i {
    padding-top: 0.13em;
}

.storygram-download-right {
    display: inline-block;
    float: left;
    text-align: left;
    line-height: normal;
}

/*Banner*/

.storygram-banner {
    width: 100%;
    height: 500px;
    background: linear-gradient(#a233a5,#d92e79,#e54b59,#f7752e);
    position: relative;
}

.storygram-banner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}



/* Between 900px to 600px styles */
@media all and (max-width: 900px) , screen and (max-device-width: 900px) {

    .storygram-right {
        width: 100%;
        max-width: 500px;
        margin: 3em 0em;
        float: none;
        padding: 0;
    }

    .storygram-left {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .storygram {
        width: 100%;
    }

}