.welcomemsg {
    display: flex;
    justify-content: center;
    white-space: pre-wrap;
    font-family: monospace;
}

.dark {
    background-color: black;
    color: white;
}

.light {
    background-color: white;
    color: black;
}

.button-container {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 25px;
    background-color: blue;
    border-radius: 15px;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.5);
}


.button {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    z-index: 2;
    right: 1px;
}

.button-right {
    left: 50%;
}

.lightmode {
    background-color: yellow;
}

.darkmode {
    background-color: lightblue;
}