* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative; /* Added position relative */
}

.container {
    text-align: center;
    border: 2px solid white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5); /* Added a semi-transparent white background */
}

input[type="text"],
button {
    margin-bottom: 10px;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Set a lower z-index to position it behind other elements */
    display: block;
}

.blueButton {
    background-color: green;
    color: white;
    border: solid black;
}

.password {
    background-color: green;
    color: white;
    border: solid black;
}

p {
    color: white;
}
