
@font-face {
    font-family: "Space Age";
    src:
        url("assets/space_age.ttf")
}

html {
    height: 100%;
}

body {

    background-color: lightgray;
    margin: 0px;
    min-height: 100%;

    display: flex;
    justify-content: center;

}

body > div {

    background-color: white;
    box-shadow: 0px 0px 15px grey;
    padding-top: 96px;

    max-width: 900px;
    width: 80%;
    min-width: 600px;
    top: 0px;
    

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

}

body > div > * {
    margin: 64px;
}

img {
    max-width: 80%;
}

.game-image {
    box-shadow: 0px 0px 15px grey;
    border-radius: 8px;
}

h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2em;
}

p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.2em;
    font-style: italic;
    max-width: 60%;
}

.game-description {
    margin: 0px;
}

a {
    text-decoration: none;
}

#download-button {
    text-align: center;

    font-family: 'Space Age';
    font-size: 1.5em;
    color: #DBDBDB;
    background-color: #727272;
    padding: 16px 48px;
    border-radius: 8px;
}

#download-button:hover {
    color: #727272;
    background-color: #DBDBDB;
}