@font-face {
	font-family: 'Mulish-Bold';
	src: url('fonts/Mulish-Bold.ttf');
}

@font-face {
	font-family: 'Mulish-Regular';
	src: url('fonts/Mulish-Regular.ttf');
}

* {
    box-sizing: border-box;
    font-family: Mulish-Regular, Arial, Helvetica, sans-serif;
}

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
}

#filler {
    background: #137ee8;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#page {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

#round {
    background: #137ee8;
    border-radius: 50%;
    width: 800px;
    height: 800px;
    top: -100px;
    left: -600px;
    position: absolute;
    z-index: -1;
}
  
#app {
    width: 600px;
    display: grid;
    grid-template-columns: 210px 1fr;
    margin-left: 60px;
}

#phone {
    position: relative;
}

#phone > * {
    left: 0;
    top: 0;
    position: absolute;
}

#phone img {
    width: 210px;
    height: 416px;
}

#phone #phone-background {
    background-color: #fff;
    z-index: -1;
    background-size: 100% 100%;
}

#phone.iphone #phone-background {
    width: 184px;
    top: 10px;
    left: 13px;
    height: 396px;
    background-image: url('imgs/phone-background-iphone.jpg');
    border-radius: 5px;
}

#phone.android #phone-background {
    width: 182px;
    top: 10px;
    left: 14px;
    height: 393px;
    background-image: url('imgs/phone-background-android.jpg');
}

#text {
    padding: 25px 50px;
    padding-right: 0px;
    margin-right: 50px;
    text-align: center;
}

#app-logo {
    text-align: center;
}

#app-logo img {
    width: 65px;
}

#text h1, #text h2 {
    color: #333;
}

#text h1 {
    line-height: 1.3em;
    font-family: Mulish-Bold;
    font-weight: normal;
    font-size: 2em;
}

#text h2 {
    font-size: 1em;
}

#text p {
    line-height: 1.4em;
    margin-bottom: 30px;
}

#stores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-right: 10px;
}

#stores > a {
    display: flex;
    align-items: center;
}

#stores > a img {
    width: 100px;
}

#app-store {
    align-items: center;
}

#app-store {
    align-items: center;
}

#google-play {
    justify-content: right;
}