*{
    margin: 0;
    padding: 0;
}

canvas {
    position: fixed;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Welcome message Style */
.message {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 80vw;
    line-height: 1.5em;
    color: #fff;
    font-size: 24px;
    top: 150px;
    z-index: 2;
}

/* Container for the buttons Style*/
.pill-container {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 20%;
    bottom: 10px;
    left: 50%;
    padding: 50px;
    transform: translateX(-50%);
    z-index: 2;
}

/*  Button Styles */
.pill-blue, .pill-red{
    background-color: #007bff;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 20px;
    margin: 0 50px;
    cursor: pointer;
    font-size: 16px; 
}

.pill-red{
    background-color: #dc3545;
}