@font-face {
    font-family: "Koulen";
    src: local('Koulen'),
        url('Koulen-Regular.ttf') format("truetype");
}
@font-face {
    font-family: "Metrophobic";
    src: local('Metrophobic'),
        url('Metrophobic-Regular.ttf') format("truetype");
}

div {
    text-align: center;
    padding: 20px;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Metrophobic, Arial;
}

body {
    background: white url("images/bricks_pixel.png");
    background-size: 256px;
    image-rendering: pixelated;
}

.cover {
    image-rendering: auto;
    width:80%;
}

#container {
    width: 60%;

    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    
    padding:0px;
    outline: dotted transparent 1px;
    /* border: dotted pink 1px; */
    border: solid black 1px;
    border-width: 0px 1px 0px 1px;
    box-sizing: border-box;

    height: calc(100vh - 40px);
    display: flex;
    flex-direction: column; /*specifies main axis to be vertical*/
    justify-content: space-between; /*main axis positioning*/
    align-items: center; /*cross axis (horizontal) positioning*/

    background-color: white;
}

.main-div {
    background-color: white;
    width: 100%;
    
}

#header {
    color: black;
}

#content {
    color: black;
    flex: 1 1 auto;
    margin-top: 20px;
}

#footer {
    color: white;
    margin-top: 20px;
}

table {
    margin-left: auto;
    margin-right: auto;
}

th, td, tr, table {
    border: 1px solid black;
}

th {
    width:30%;
}

.place_column {
    width:10%;
}

.outline, .main-div {
    border: 1px solid black;
}

.button {
    border: 1px solid black;
    padding: 5px;
    color: black;
    text-decoration: none;
    white-space: nowrap;
    display:inline-block;
    margin: 2px 0px;
}

.selected {
    background-color: rgb(169, 169, 169);
}

.download {
    height: 60px;
    width: 200px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.title {
    color: black;
    text-decoration: none;
    font-family: Koulen, Arial;
    font-size: 50px;
}

.button:hover {
    background-color: #85929E;
}

.maxwell {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width:30%;
}

.gallery {
    background-color: white;
    position: absolute;
    left: 2%;
    right: 2%;
    padding: 0px;
}

.screenshot_container {
    width: calc(100% / 3 - 2%);
    margin: 1%;
    float: left;
    box-sizing: border-box;
    padding: 0px;
}

.screenshot {
    width: 100%;
    image-rendering: auto;
}

.caption {
    margin-top: 4px;
    margin-bottom: 4px;
}

.confirm {
    --color: green;
    --margin: 20px;
    border: 2px solid var(--color);
    color: var(--color);
    font-weight: bold;
    margin-left: var(--margin);
    margin-right: var(--margin);
}

.icon {
    --size: 18px;
    height: var(--size);
    width: var(--size);
    vertical-align: middle
}

.squish {
    width:60%;
    margin: auto;
}

/* Mobile */

@media only screen and (max-width: 600px) {
    html, body {
        width: 100%;
    }

    .maxwell {
        width: 80%;
    }

    #container {
        width: 100%;
        margin: 0px;
        height: 100vh;
    }

    #footer, #content {
        margin-top: 0px;
        border-top: 0px;
    }

    .main-div {
        width: calc(100% - 40px)
    }

    .screenshot_container {
        width: calc(100% - 4%);
    }

    .cover {
        width: 100%;
    }
}