/* [project]/src/app/(frontend)/styles.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  background: #002a38;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  transition: background .6s;
  display: flex;
  position: relative;
  overflow: hidden;
}

a.circle {
  color: inherit;
  text-decoration: none;
}

.circle {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: clamp(18rem, 50vw, 36rem);
  height: clamp(18rem, 50vw, 36rem);
  transition: box-shadow .4s;
  display: flex;
  position: relative;
  box-shadow: 0 0 #0096c800;
}

.logoFade {
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  place-items: center;
  font-size: clamp(8rem, 30vw, 20rem);
  line-height: 1;
  animation: .8s ease-out logoFadeIn;
  display: grid;
  position: relative;
}

.logoFade .image {
  width: 100%;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=src_app_%28frontend%29_styles_0-lpwga.css.map*/