body {
    margin: 0 auto;
    /* font-family: Helvetica; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* font-family: -apple-system, system-ui, BlinkMacSystemFont; */
    background: #F6F5F5;
}

.main-nav {
    display: flex;
    margin: 0;
    justify-content: space-between;
    padding: 20px 20px 10px 20px;
}

.main-nav-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
}

.body-text {
    font-size: 2.2em;
    font-weight: 300;
    color: #000000;
}

.title-text-light {
    color: #000000;
    font-weight: 200;
    font-size: 1.5em;
}

.body-text-light {
    color: #000000;
    font-weight: 200;
    font-size: 2.0em;
}

.app-icon {
    width: 300px;
    height: 300px;
}

.spacer8 {
    padding-left: 8px;
}

.spacer8b {
    padding-bottom: 8px;
}

a:hover {
    color: #686de0;
}

.right {
    float: right;
}

li {
    padding: 20px;
}

a {
    color: #000000;
    text-decoration: none;
}

.sticky {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
}

.cover-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.cover-text > h1 {
    color: #000000;
    font-weight: bold;
    text-align: center;
    font-size: 3.2em;
}

.cover-text > p {
    max-width: 600px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.title-text {
    color: #000000;
    font-size: 2.2em;
    font-weight: 700;
}

.download-button {
    width: 250px;
}

.how-it-works {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 0px;
}

.how-it-works > p {
    text-align: center;
}

.how-it-works > img {
    padding-left: 10px;
}

.wave {
    width: 100%;
    height: 70px;
    background: url('images/wave.svg');
    background-repeat: round;
    background-color: #FFFFFF;
}

.cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.screen {
	width: 500px;
}

.section {
	width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 80px;
}

.section .text {
	width: 360px;
	position: relative;
}

.section .text h4 {
    font-size: 2.2em;
    font-weight: 700;
}

.section .text p {
    font-size: 1.6em;
    font-weight: 300;
}

.white {
    background: #FFFFFF;
}

.grey {
    background-color: #F6F5F5;
}

.love {
    color: red;
}

.footer {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    white-space: pre;
}

@media screen and (max-width: 960px) {
	.section {
		width: 480px;
        /* width: 100%; */
        flex-direction: column;
	}

	.section .text {
		order: 2;
		width: 100%;
	}

	.section .screen {
		order: 1;
		margin-bottom: 64px;
	}
}

@media screen and (max-width: 540px) {
    .main-nav {
        font-size: 0.5em;
        padding-left: 10px;
    }
    
	.section {
		width: 90%;
        flex-direction: column;
	}
    
	.section .text h4 {
		margin-bottom: 0px;
	}

	.screen {
        width: 300px;
	}

    .body-text {
        font-size: 1.6em;
    }

    .title-text {
        font-size: 1.6em;
    }

    .footer {
        font-size: 0.6em;
    }
}
