/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: white;
  font-family: "Workbench", sans-serif;
  /*background: linear-gradient(356deg, #142d06 0%, #1f5b06 100%);*/
  background: black;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


html {
  background: black;
  overflow: hidden;
}

a {
  text-decoration: none !important;
  color: white;
}

.container,
.ground,
.sky,
.bandname,
.light,
.release {
  position: absolute;
}

.container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0%;
  left: 50%;
  margin-left: -50%;
  margin-top: 0px;
}

.sky {
  opacity: .8;
  width: 100%;
  height: 50%;
  top: 0;
  background: radial-gradient(at 10% 30% 90%, #000B0F, #0A0A4A, #000047  );
  z-index: 30;
}

.ground {
  width: 100%;
  height: 50%;
  top: 50%;
  background: radial-gradient(at 10% 0%, #330000, #000000);
  z-index: 60;
}

.bandname {
  width: 100px;
  height: 100px;
  
  left: 25%;
  z-index: 40;
  animation: rise 24s ease forwards;
}

.release {
  width: 100px;
  height: 100px;
  left: 25%;
  top: 65%;
  z-index: 70;
  animation: fadein 30s ease forwards;
}

@keyframes rise {
  0% {
    top: 50%;
  }
  100% {
    top: 15%;
  }
}

@keyframes fadein {
  0% {
      opacity: 0;
  }
  50% {
      opacity: 0;
  }
  100% {
      top: 1;
  }
}

.light {
  opacity: .5;
  left: 0%;
  width: 100%;
  height: 100%;
  background: radial-gradient(at 20% 0%, #184769, transparent);
  z-index: 60;
  animation: over 12s ease forwards;
}

@keyframes over {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .3;
  }
}


/* Foreground */
.foreground {
  width: 80%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    #01040a 20%,
    #04132b,
    #061e45,
    #052252,
    #032863
  );
}

/* Sky Gradient */
.sky-grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1100px;
  background: linear-gradient(
    180deg,
    #03071e 30%,
    #1a3a50,
    #006692,
    #8a92a6, 70%
  );
}

.workbench-blurriest {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 100,
    "SCAN" 100;
}

.workbench-fadein1 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 94,
    "SCAN" 94;
}

.workbench-fadein2 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 94,
    "SCAN" 94;
}

.workbench-fadein3 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 82,
    "SCAN" 82;
}

.workbench-fadein4 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 68,
    "SCAN" 68;
}

.workbench-fadein5 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 50,
    "SCAN" 50;
}

.workbench-fadein6 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 35,
    "SCAN" 35;
}

.workbench-fadein7 {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 15,
    "SCAN" 15;
}

.workbench-final {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 40px;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
}

.goldman-bold {
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  font-style: normal;
}