html {
  background: rgba(255, 15, 75, 1);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #ff3366;
  background: radial-gradient(ellipse at center, rgba(255, 51, 102, 1) 0%, rgba(255, 15, 75, 1) 100%);
  height: 100vh;
  margin: 0px;
}

#stars {
  display: block;
  position: absolute;
  width: 100%;
  height: 16rem;
  height: 100vh;
  z-index: 1;
}

.container {
  height: 100%;
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
.container img {
  width: 100%;
}

@keyframes loader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loader-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.loader {
  height: 500px;
  width: 500px;
}

.loader::after,
.loader::before {
  animation: loader 2s linear infinite;
  content: '';
  border: 5px solid white;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
}

.loader::after {
  opacity: 0;
  animation-delay: 1s;
}
