html, body {
    background-color: black;
    background-image: url("/static/img/bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    color: white;
    font-family: "Roboto", sans-serif;
}

#landing .outer {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-basis: auto;
    align-items: center;
    justify-content: center;
}

#landing .center-block {
    display: flex;
    flex-direction: row;
    width: 900px;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    padding: 20px;
    align-items: center;
    border-radius: 25px;
}

#landing .center-block-left {
    flex-shrink: 0;
    flex-grow: 1;
}

#landing .img-phone {
    height: 700px;
}

#landing .center-block-right {
    box-sizing: border-box;
    flex-grow: 1;
    min-width: 300px;
    padding-left: 30px;
}

#landing .app-description-title {
    font-size: 45px;
    font-weight: 300;
    margin-top: 0;
}

#landing .app-description {
    font-size: 14px;
}

#landing .links {
    margin-top: 15px;
    border-top: 2px solid white;
    padding-top: 15px;
    padding-left: 30px;
    font-weight: bold;
}

#landing .links li {
    list-style-type: none;
    margin-bottom: 10px;
}

#landing .links li:before {
    content: "\25B6";
    padding-right: 8px;
}

#landing a, #landing a:active, #landing a:visited {
    color: white;
    text-decoration: none;
}

#landing a:hover {
    text-decoration: underline;
}