* {
    padding: 0px;
    margin: 0px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

body {
    background-color: #fff;
}

h1 {
    margin-bottom: 25px;
}

h2 {
    margin-top: 35px;
    margin-bottom: 10px;
}

h3 {
    margin-bottom: 5px;
}

ul {
    margin-left: 50px;
    margin-top: 10px;
}

table {
    width: 100%;
}

th {
    text-align: left;
    padding-bottom: 5px;
}

td {
    margin-right: 5px;
}

pre {
    background-color: #505050;
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
}

div.wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    display: grid;
    column-gap: 50px;
    grid-template-columns: [content] 750px [right] auto;
    grid-template-rows: [row-top] 50px [row-release] 120px [row-community] 120px [row-other] auto [row-footer] 150px;
}

div.menu {
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50px;
    padding-top: 4px;
    font-size: 22px;
    text-align: center;
    background-color: rgb(56, 127, 170);
}

div.menu > div.items {
    padding-top: 8px;
}

a, a:visited {
    color: blue;
}

div.menu > div.items > a, div.menu > div.items > a:visited {
    color: white;
    text-decoration: none;
}

div.content {
    grid-column: content;
    grid-row-start: row-top;
    grid-row-end: row-footer;
    margin: auto;
}

div.content > div.logo > img {
    width: 250px;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
}

div.releases {
    grid-column: right;
    grid-row: row-release;
}

div.community {
    grid-column: right;
    grid-row: row-community;
}

@media only screen and (min-width: 320px) and (max-width: 450px) {

div.wrapper {
    width: 95%;
    display: grid;
    column-gap: 50px;
    grid-template-columns: [content] 100%;
    grid-template-rows: [row-top] 20px [row-release] 20px [row-other] auto [row-empty] 50px [row-community] 120px [row-footer] 50px;
}

div.menu {
    padding-top: 25px;
    font-size: 16px;
}

div.content {
    grid-row-start: row-other;
    grid-row-end: row-empty;
}

div.content > div.logo {
    width: 100%;
    text-align: center;
}

div.content > div.logo > img {
    width: 200px;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
}

div.community {
    grid-column: content;
    grid-row: row-community;
    text-align: center;
}

div.releases {
    grid-column: content;
    grid-row: row-release;
    text-align: center;
}

div.releases > h3 {
    display: none;
}

div.releases > p {
    display: inline-block;
}

pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    word-wrap: break-word;
}

}
