@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

* {
  cursor: none;
}

html, body {
  margin: 0; 
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; /*centers items on the line (the x-axis by default)*/
  align-items: center; /*centers items on the cross-axis (y by default)*/
}

body {
  background-color: black;
}

.flexbox-panel { 
  background-color: black;
  flex: 0 1 auto;
  background-color: transparent;
  align-self: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-right: 20px;
  margin-left: 20px;
  width: fit-content;
  height: auto;
}

.flexbox-item {
  overflow: hidden;
  flex: 0 1 auto;
}

.aricade-logo {
  margin-top: 80px;
  width: 886px;
  height: auto;
  max-width: 100%;
  max-height: auto;
  animation: logo-glow 2s ease-in-out infinite alternate;
}

.slogan {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-align: center;
  /* font-size: scale according to screen with max and min; */
  font-size: calc(1vw + 3.5vmin);
  margin-top: 10px;
  margin-bottom: 20px;
  color: white;
  animation: text-glow 2s ease-in-out infinite alternate;
}

.svg-background {
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 10s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes text-glow {
  0% {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 1);
  }
}

@keyframes logo-glow {
  0% {
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
  }
  100% {
    filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.8));
  }
}