@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300ita‌​lic,400italic,500,500italic,700,700italic,900italic,900);

html {
    height: 100%;
}

body {
    height: 100%;
    background-image: url("background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    color: white;
}

#wrapper {
    min-height: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#title {
    flex: 2;
}

#logo {
    display: flex;
    margin-bottom: 4px;
}

h1 {
    margin-left: -15px;
    margin-top: auto;
}

#content {
    flex: 10;
}

#cover {
    max-width: 100%;
    height: auto;
}

.top-padding {
    padding-top: 16px;
}

.undecorated {
    text-decoration: none;
}

#play-now-button {
    margin-top: 2px;
    min-width: 240px;
    border-radius: 64px;
    background-color: whitesmoke;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
}

#play-now-button:hover {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

#play-now-button-text {
    padding: 16px;
    text-align: center;
    color: #2e5bcd;
    font-size: larger;
}

#footer {
    flex: 1;
    font-size: small;
}

p {
    text-align: center;
}