body {
    
    overflow: hidden; /* Hide scrollbars */
    overflow: auto;
      
    background-color: #dbdbdb;

    user-select: none;
}

::-webkit-scrollbar {
    display: none;
}

#beschreibung {
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
    font-size: x-large;
    text-align: center;
}

.alert-box {
    user-select: none;
    position: absolute;
    transition: all .3s ease-in-out;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 390px;
    min-height: 190px;
    background-color: white;
    text-align: center;
    padding: 40px;
    pointer-events: none;
    border: 1px solid #AAA;
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
    box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
    z-index: 9000;
    border-radius: 2%;
    opacity: 0;
}

.alert-box p {
    margin-top: 0px;
    margin-bottom: 50px;
}

.alert-box h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.correctness {
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
    font-size: 45px;
    border: 3px solid transparent;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    opacity: 0;
    display: table;
    margin: auto;
    margin-top: 3rem;
}

canvas {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 200px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.anima {
    animation: fadeout 5s 1 normal
}

@keyframes fadeout {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.icon {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #aaa;
    border-radius: 50%;
    border: 2px solid black;
    transform: translateY(8px);
}

.icon::before {
    content: "?";
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-7deg) translate(-33%, -53%);
}

.icon:hover::before::after {
    content: attr(title);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
    white-space: nowrap;
}

.cancel, .next {
    background-color: #AAA;
    color: white;
    text-decoration: none;
    padding: 10px 13px;
    border: 1px solid #444;
    border-radius: 5px;
    margin-top: 100px;
}

.cancel:hover {
    transition: .3s;
    background-color: #888;
}

.next {
    background-color: #00c100;
    margin-left: 20px;
}

.next:hover {
    transition: .3s;
    background-color: #00a100;
}

#button-container {
    position: absolute;
    flex-direction: row-reverse;
    margin-left: calc(100% - 200px);
    margin-top: 0px;
}

.left-button-container {
    position: absolute;
    flex-direction: row-reverse;
    margin-left: 50px;
    margin-top: 0px;
}

.left-button {
    font-size: large;
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
    border-radius: 5px;
    cursor: pointer;
    width: 140px;
    height: 57px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
}

.left-button:hover {
    color: #FFF;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.button {
    font-size: large;
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
    border-radius: 5px;
    cursor: pointer;
    width: 140px;
    height: 57px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
}

.button:hover {
    color: #FFF;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

@-moz-document url-prefix() {
    .left-button,.button {
        border-color: black;
        border-style:solid;
    }
    .leftselect{
        border-radius:revert;
    }
  }