@import url("http://meyerweb.com/eric/tools/css/reset/reset.css");

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
	font-size: 20px;	
    font-weight: 400;
    font-style: normal;
    line-height: 120%;

	color: black;
	background-image:
	  linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
	  linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
	  linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
	  url(images/bg-brandi-redd-122054.jpg);

    background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;

	min-height: 100vh; /* for background */

	text-align: center;
}


/* BASE */

p {
	font-weight: 200;
	line-height: 140%;
}

h1 {
	font-weight: 600;	
	font-size: 80px;
	line-height: 100%;	
	margin-bottom: 20px;	
}

h2 {
	font-size: 64px;
	font-weight: 500;	
}

.lead {
	font-size: 32px;
	margin-bottom: 40px;
}

.color-primary {
	color: #5856D6;	
}


/* CONTAINERS */

section {
	padding-top: 80px;
	padding-bottom: 80px;
}

article {
	padding: 0 20px;
	max-width: 860px;
	margin: 0 auto;
}


.iphone-x-bg {
	background-image:
		url('images/app-icon-rounded.png'),
		linear-gradient(to bottom, #fff, rgba(255,255,255,0)),
		url(images/iphonex_large@2x.png),
		url(images/shot-all-list.png);
	background-position:
		center 40px,
		center -80px,
		center -500px,
		center -490px;
	background-size:
		80px 80px,
		320px 300px,
		360px,
		320px;
	background-repeat: no-repeat;
	padding-top: 300px;

   -webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1.5s; /* Firefox < 16 */
        -ms-animation: fadein 1.5s; /* Internet Explorer */
         -o-animation: fadein 1.5s; /* Opera < 12.1 */
            animation: fadein 1.5s;		
}

.bg-pink {
	background-image: 
		url(images/bg-papers-pink.jpg);
    background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: white;

   -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;		
}

.bg-pink p, .bg-pink a {
	color: white;
	color: rgba(255, 255, 255, 0.75);
}


.apple-badge {
	height: 60px;
	transition: all .2s ease-in-out;
}

.apple-badge:hover {
	transform: scale(1.01);
}

.logo {
	border-radius: 15px;
}

/* ANIMATIONS */

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

