.TitleScreen {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    }
    
    #TitleScreenID{
        margin: 0 auto;
    }
    
    #TitleScreenID .PlayNowButton, #TitleScreenID .CreateNowButton {
        font-family: 'press_start_2pregular';
        color: black;
        background-color: #ffffff;
        font-weight: 300;
        box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
        transition: 0.1s;
        text-shadow: 0px 2px rgba(0, 0, 0, 0.2);
        appearance: none;
        outline: none;
        margin: 0;
        cursor: pointer;
        position: absolute;
        padding: 3px 3px;
        border-radius: 8px;
        pointer-events: auto;
    }
    
    #TitleScreenID .PlayNowButton:hover, #TitleScreenID .CreateNowButton:hover {
        animation: none;
        box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.2);
        filter:drop-shadow(0 0 0.75rem goldenrod);
    }
    
    #TitleScreenID .PlayNowButton:active, #TitleScreenID .CreateNowButton:active {
        animation: none;
        box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
        text-shadow: 0px 0px rgba(0, 0, 0, 0.2);
    }
    
    