body {
    background-color: #000;
    font-family: 'Roboto';
}

#background {
    position: absolute;
    z-index: 0;
    padding: 0;
    margin: 0;
    display: none;
}

#gameview {
    position: absolute;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
    text-align: center;
    width: 100%;
    font-size: x-large;
    color: #009C41;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
    display: none;
}
#form-container {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-template-rows: repeat(3, 1fr) max-content;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    align-items: baseline;
}
#gdpr_section {
    grid-area: 4 / 1 / 5 / 3;
    display: flex;
    flex-direction: row;
}

#playAndWin {
    z-index: 1;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 75px);
    width: 150px;
    height: 50px;
    border: 0;
    font-weight: 900;
    font-size: 20px;

    background-color: black;
    color: white;
}

#playAndWin:hover {
    background-color: white;
    color: black;
}
