@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400");
html {
  height: 100%;
}

body {
  /* font-family: 'Roboto', sans-serif; */
  background: #0f0c29;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left bottom, left top, from(#24243e), color-stop(#302b63), to(#0f0c29));
  background: linear-gradient(to top, #24243e, #302b63, #0f0c29);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

::root {
  --pink: #ff3466;
  --space: #424B54;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
}

.toplayer {
  z-indeX: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10vh;
}

button {
  background: #ff3466;
  width: 150px;
  height: 40px;
  border: none;
  color: #FFF;
  border-radius: 6px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  outline: none;
  cursor: pointer;
}

.layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: -1;
  position: absolute;
  top: 0;
  width: 500px;
  min-width: 500px;
  height: 500px;
  min-height: 500px;
  top: 30vh;
  opacity: 0;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
  font-size: 27px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: rgba(50, 45, 108, 0.95);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
          box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.layer > * {
  margin: 3px;
}

i {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #FFF;
  cursor: pointer;
}

p {
  color: #FFF;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  opacity: 0;
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
}

a {
  opacity: 0;
  color: #ff3466;
  letter-spacing: 1px;
  text-decoration: none;
}

.clicked {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 100;
  opacity: 1;
}

.clicked p, .clicked a {
  opacity: 1;
}

.layer-content {
  font-size: 20px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */