
#mainContainer {
    text-align: center;
    padding: 20px;
    color: white;
}
#dpad {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#text {
    margin-bottom: 20px;
}

#continueText {
    font-size: 30px;
    font-family: "Lucida Console", "Courier New", monospace;
    color: red;
}
#controlText{
    font-size: 20px;
    font-family: "Lucida Console", "Courier New", monospace;
}

.inline {
    display: inline-block;
    margin-right: 10px;
}

#formText {
    font-size: 40px;
    font-family: "Lucida Console", "Courier New", monospace;
    color: red;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

label {
    font-size: 16px;
    margin-right: 10px;
}

input[type="text"] {
    padding: 10px;
    font-size: 14px;
    font-family: "Lucida Console", "Courier New", monospace;

}

#keepData,
#dontKeepData {
    background-color: #1df500;
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

#keepData:hover,
#dontKeepData:hover {
    background-color: #ff0505;
}

/* New styles for Continue and Reset buttons */
.continueButton {
    background-color: #1df500;
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.continueButton:hover {
    background-color: #ff0505;
}

.resetButton {
    background-color: #1df500;
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.resetButton:hover {
    background-color: #ff0505;
}


.button {
    background-color: #cbd8cb;
    border: none;
    box-shadow: 0 9px#505050;
    padding: 25px;
    border-radius: 50%;
}

.button:hover {
    background-color: #ac5f5f;
}

.button:active {
    box-shadow: 0 1px #e9e0e0;
    transform: translateY(5px);
}

.pressed {
    box-shadow: 0 1px #c9c8c8;
    transform: translateY(5px);
}

body {
    background: rgb(0, 0, 0);
    margin: 0; /* Remove default margin */
    overflow: hidden;
}

/* Disable scrolling and make canvas fully fullscreen */
html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

canvas {
    width: 100%;
    height: 100%;
    border: 1px solid #000000;
}
