body{
  font-family: sofia-pro, sans-serif;
  background: #3A383E;
  font-size: 17px;
  /* height: 100%;
  width: 100%; */
  overflow: hidden;

}
@keyframes logo{
  0%{
    fill: #8400FF;
  }
  20%{
    fill: #817c89;
  }
  40%{
    fill: #FF6969;
  }
  60%{
    fill: #E54360;
  }
  80%{
    fill: #2F80ED;
  }
  100%{
    fill: #8400FF;
  }
}
@keyframes scale{
  0%{
    transform: translate(-50%,-50%) scale(0.6);
    transform-origin: center center;
  }
  50%{
    transform: translate(-50%,-50%) scale(3);
    transform-origin: center center;
    filter: blur(20px);
  }
  100%{
    transform: translate(-50%,-50%) scale(0.6);
    transform-origin: center center;
  }
}
@keyframes burst{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 0.35;
  }
  100%{
    opacity: 0;
  }
}
.container{
  max-width: 700px;
  margin: auto;
  padding: 0 2em;
  text-align: center;
}
h1{
  margin-bottom: 1em;
  font-size: 20px;
}
section{
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}
svg{

}
main{
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  position: relative;
}
#logo{
  width: 150px;
  height: auto;
}
#logo .bg{
  animation: logo 10s ease infinite;
}
#backdrop{
  width: 200px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  animation: scale 5s ease infinite;
  animation-delay: 1s;
  transform: translate(-50%,-50%) scale(0.6);
  transform-origin: center center;
}
#backdrop .burst{
  animation: burst 5s ease infinite;
  animation-delay: 1s;
  opacity: 0;
}
.button-wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.button{
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background: #E54360;
  padding: 1em 0;
  color: white;
  text-decoration: none;
  width: calc(50% - 5px);
  transition: all 300ms ease;
  text-align: center;
  backface-visibility: hidden;
}
.button:last-child{
  background: #00BC70;
}
.button:hover,
.button:active {
  background: #8400FF;
  transform: scale(1.1);
  /* color: black; */
}
.button:last-child:hover,
.button:last-child:active {
  background: #2F80ED;
}
