* {
    box-sizing: border-box;
}
body, ul, li, h1, h2 {
    margin: 0;
    padding: 0;
}
body {
    /* background: #333 linear-gradient(to bottom, #333, #111); */
    background: url('../images/bg_pb.jpg') no-repeat center center, rgba(0,0,0,.9);
    background-blend-mode: multiply;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
}
#app {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
#logo {
    display: block;
    text-align: center;
}
#logo img {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 5px auto;
}
#logo h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 5rem;
    text-transform: uppercase;
    color: #009cff;
    letter-spacing: 0.3rem;

}
#logo h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #eee;
}
.contact {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    min-width: 400px;
    max-width: 600px;
    justify-content: space-around;
    margin-top: 20px;
}
.contact li {
    display: flex;
    font-size: 1.4rem;
    color: #fff;
    text-shadow: 0 0 3px #009cff;
    justify-content: center;
    align-items: center;
}
.contact li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s linear;
}
.contact li a:hover {
    color: #009cff;
}
.contact li i {
    margin-right: 10px;
}
@media only screen and (max-width: 599px) {
    #app {
        height: calc(100vh-40px);
    }
    #logo h1 {
        font-size: 2.5rem;
    }
    #logo h2 {
        font-size: 1.5rem;
    }
    .contact {
        display: block;
        min-width: inherit;
        width: 80%;
    }
    .contact li {
        display: block;
        clear: both;
        margin: 20px 0 0 0;
        font-size: 1.2rem;
        /* justify-content: flex-start;
        align-items: flex-start; */
    }
    .contact:nth-of-type(2) {
        margin-top: 0;
    }
}