
#startOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#startButton {
    padding: 20px 40px;
    font-size: 24px;
    font-family: 'Major Mono Display', monospace;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

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