/* Background tyles */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
}
html,
body {
    height: 100%;
    min-height: 100%;
    background-color: #392b45;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body {
    background: linear-gradient(114deg, #0064009e, #228b22cc, #2e8b57cc, #ffffffcc);
    background-size: 1000% 1000%;
    animation: gradient-animation 40s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body:after {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

/* Background Canvas */
#akCanvas {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}