body {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#350000+0,000000+100 */
    background: rgb(53, 0, 0);
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(53, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(53, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(53, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#350000', endColorstr='#000000', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #eff8ff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    height: 100vh;
    position: relative;
}

#girl {
    background: url(../img/Desktop.png) top left no-repeat;
    background-size: contain;
    width: 100%;
    height: 100vh;
}

h1 {
    font-family: 'Open sans';
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 9vh;
    text-transform: uppercase;
}

p {
    line-height: 1.3;
    margin-bottom: 30px;
}

header {
    margin: 50px 0 11vh 0;
}

#logo {
    width: 180px;
    height: 38px;
    background: url(../img/logo.svg) top left no-repeat;
}

ul {
    margin-left: 35px;
}

li {
    margin-bottom: 12px;
    position: relative;
}

li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: -15px;
}

footer {
    margin-top: 9vh;
    line-height: 60px;
}

a {
    font-family: 'Open sans';
    font-size: 12px;
    float: left;
    margin-right: 150px;
}

a:hover {
    opacity: 0.7;
}

#facebook a {
    font-size: 28px;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {

    body {
        background: url(../img/phone.png) top center no-repeat;
        background-size: cover;
    }

    h1 {
        font-size: 40px;
    }

    #girl {
        display: none;
    }

    footer {
        padding: 0 30px;
    }

    a {
        margin-right: 0;
    }    

    #facebook a {
        float: right;
    }
    
}