html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900&display=swap");

body {
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.container {
    width: 90%;
    margin: 0 auto;
}

nav {
    padding: 20px;
}

nav .container {
    display: flex;
}

nav .menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav .menu ul {
    display: inline-block;
}

nav .menu ul li {
    display: inline-block;
    margin-right: 20px;
}

nav .menu ul li a {
    color: #c0c3c7;
    text-decoration: none;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    transition: all 200ms ease-in-out;
    padding: 5px;
}

nav .menu ul li a:hover {
    color: #303340;
}

main {
    padding: 100px 20px;
    display: flex;
}

main .container {
    display: flex;
    align-items: center;
}

main section {
    display: flex;
    flex: 1;
}

#left {
    margin-bottom: 120px;
    flex-direction: column;
}

#left h3 {
    font-size: 16px;
    color: #00b7c5;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#left h1 {
    font-size: 74px;
    color: #303340;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0;
}

#left p {
    margin: 20px 0 40px 0;
    font-size: 18px;
    line-height: 26px;
    color: #c0c3c7;
}

#left .stores {
    display: flex;
    flex-direction: row;
}

#left .stores a {
    margin-right: 20px;
    opacity: 1;
    transition: all 200ms ease-in-out;
}

#left .stores a:hover {
    opacity: 0.5;
}

#right {
    justify-content: flex-end;
}

#right img {
    display: inline-block;
    max-width: 100%;
}

@media only screen and (max-width: 900px) {
    .container {
        text-align: center;
    }
    #left .stores {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        justify-items: center;
    }
    #right {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    #left h3 {
        font-size: 14px;
        color: #00b7c5;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #left h1 {
        font-size: 54px;
        color: #303340;
        font-weight: 900;
        margin-top: 0;
        margin-bottom: 0;
    }

    #left .stores img {
        height: 40px !important;
    }
}
