body {
  color: transparent;
  background-color: transparent;
  font-family: sans-serif;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  --bodymargin: 1vh;
  --wContent: calc(100vw - 2*var(--bodymargin));
  --hContent: calc(100vh - 2*var(--bodymargin));
  margin: 0;
  padding: 0;
  height: 100vh;
}

.container {
  height: 100vh;
  width: 100vw;
  padding: 0rem;
  margin:8px;
}

.container svg {

  width: 100%;
  aspect-ratio: 1;
  shape-rendering: geometricprecision;
  /* smoth curve edges */

}


.errorMessage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000;
  z-index: 100;
}

.titleMessage {
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  flex-wrap: wrap;  
  flex-direction: column;
  row-gap: 8px;
  cursor:pointer;
  font-family: 'Open Sans', sans-serif;
}


.animation {
  -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}



@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 0;
  }

  0% {
    opacity: 1;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.fadeOut:hover {
    -webkit-animation-name: fadeIn;
      animation-name: fadeIn;
}


.title {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
}



.subTitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
}

.button {
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    border-radius: 8px;
    padding: 4px;
    border: 2px;
    border-color: 'white';
    background-color: #fff
}
