html, body {
    margin: 0 !important;
    padding: 0 !important;
    touch-action: none;
    /* overflow: hidden; */
}

body {
    background-color: #111111;
    color: white;
    font-family: sans-serif;
    font-size: 19px;
}

h1 {
    margin-top: 50px;
}


h1, h2 {
    text-align: center;
    font-weight: normal;
}

p {
    text-align: center;
    font-weight: bold;
    margin-top: 100px;
}

canvas {
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0.6;
}

.info-icon-container {
    position: absolute;
    text-align: center;
    top: 50%;
    margin-top: -120px;
    margin-left: 10%;
    font-size: 18px;
    width: 80%;
}

.info-icon {
    opacity: 0.5;
    width: 160px;
    height: 160px;
    text-align: center;
}

.spinning {
    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}

@keyframes spin {
      from {
          transform:rotate(0deg);
      }
      to {
          transform:rotate(360deg);
      }
}

.msg-row {
    height: 100dvh;
    width: auto;
}


@media screen and (min-width: 480px) {
    .msg-row-video {
        width: 100dvw;
    }

    #tutorial {
        width: 100dvw;
    }
}
