html, body {
    margin: 0;
    background-color: #313148;
    overflow: hidden;
}

canvas {
    position: absolute;
    background-color: rgb(166, 210, 237);
    top: 0;
    left: 0;
}

#play {
    background-color: rgba(0, 0, 0, 0.423);
    backdrop-filter:blur(2px);
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.menu {
    backdrop-filter:blur(2px);
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: fadeOut, 1s;
    background-color: #313148;
}

@font-face {
    font-family: Archivo;
    src: url("assets/fonts/archivo.ttf");
}

@keyframes fadeOut {
  from {
    filter: opacity(1);
  }
  to {
    filter: opacity(0);
  }
}