
html,
body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

#lifeGrid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
}

#selectDiv {
    padding: 2px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.85;
    background: rgba(255,255,255,1);
}

#universeIdTextBox {
    text-align: right;
    padding: 2px;
    width: 75px;
    height: 10px;
}

#symLabel {
    font-size: 18px;
}

#controlDiv {
    padding: 10px;
    display: block;
    height: 100px;
    background-color: white;
    font-size: 12px;
}

.gridSelect {
    height: 20px;
    width: 20px;
    opacity: 50%;
    background-color: white;
    color: red;
}

@media all and (max-width: 600px) and (orientation:portrait) {
    #selectDiv {
        transform: translateX(+50%) translateY(+50%) scale(2);
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media all and (max-width: 1200px) and (orientation:landscape) {
    #selectDiv {
        transform: translateX(+50%) translateY(+50%) scale(2);
        position: absolute;
        top: 0;
        left: 0;
    }
}
