#nextbutton {
    width: 50vw;
    height: auto;
    position: absolute;
    bottom: 6vh;
    left: 25vw;
    background-color: #AD50FF;
    border: 0.2em solid white;
    text-align: center;
    color: #FFF;
    border-radius: 100px;
}

.a-dialog-allow-button {
    background-color: #198754;
    color: #fff
}

.a-dialog-deny-button {
    background-color: #6c757d;
    color: #fff
}

.a-dialog-ok-button {
    background-color: #198754;
    color: #fff
}

#nextbutton:active {
    background-color: white;
    color: #AD50FF;
}

h2 {
    font-size: 1.3em;
    text-align: center;
    font-family: monospace;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

html, body {
    margin: 0px;
    padding: 0px;
    min-height: 100%;
    height: 100%;
}



.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.wana-footer {
    background-color: #28205c;
    background-image: url("../assets/Media/bottom-fruit-loop.png");
    background-repeat: repeat-x;
    margin: 0px;
    padding: 0px 0px 43px 0px;
    background-position: center;
    background-size: contain;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
    text-align: center;
    max-width: 429px;
    object-fit: contain;
}

.home-btn {
    transition: transform 250ms, opacity 400ms;
}

.home-btn:hover {
    transform: scale(1.2);
    opacity: 0;
}

.load-anim {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70%;
    height: 100px;
    width: 100px;
    text-align: center;
    object-fit: contain;
    animation: crescendo 1.5s alternate infinite ease-in;
  }

  @keyframes crescendo {
    0%   {transform: scale(.8);}
    100% {transform: scale(1.5);}
  }