.LoginContainer {
    position: relative;
    margin: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    top: -10%;
    min-width: 200px;
    min-height: 50px;
    padding: 32px 64px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    box-shadow: 2px 30px 50px rgba(0, 0, 0, 0.5);
    z-index: 200;
    font-family: Arial, Helvetica, sans-serif;
}

.LoginContainer span {
    font-size: 2em;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0.25em;
}

#btnSignIn {
    width: 100px;
    height: 50px;
    font-size: 1.25em;
    border-radius: 10px;
    border-width: 3px;
    background-color: rgb(255, 235, 0);
    animation: button-shake 1 0.4s ease;
}

@keyframes button-shake {
    0% {
        transform: rotate(10deg);
        opacity: 0%
    }

    25% {
        transform: rotate(-10deg);
        opacity: 20%
    }

    75% {
        transform: rotate(10deg);
        opacity: 60%
    }

    100% {
        transform: rotate(0deg);
        opacity: 100%
    }
}

.LoginContainer p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: rgb(192, 0, 0);
    display: none;
    margin: 0px;
    margin-bottom: 8px;

}

.UserInfoContainer {
    display: flex;
    width: 800px;
    justify-content: space-evenly;
    margin-top: 8px;
}

.UserInfoContainer button {
    width: 80px;
    height: 40px;
    align-self: flex-end;
}

.DisplayNameContainer {
    display: flex;
    flex-flow: row;
    justify-content: center;
}

.DisplayNameContainer button {
    width: 135px;
    height: 40px;
}

.Backdrop {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.MainPage {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Canvas {
    flex-basis: 800;
}

canvas {
    border: 1px solid black;
    margin: auto;
    display: block;
}

.banner {
    display: flex;
    flex-flow: row;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    animation: bannerColorChange 3s infinite alternate;
    color: #0c686b;
}

@keyframes bannerColorChange {
    from: {
        color: #076914;
    }

    to: {
        color: #6e0808;
    }
}