@import url('https://fonts.googleapis.com/css?family=Exo:400,700');


*{
    margin: 0px;
    padding: 0px;
}

body{
  background: #4e54c8;
    font-family: 'Exo', sans-serif;
}

.context {
    width: 100%;
    position: absolute;
    
}

.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}

@media only screen and (max-height: 30000px) {
  .area{
    height: 500%;
  }
}

.area{
    background: #4e54c8;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
}

.circles{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
  
}

.circles li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.circles li:nth-child(2){
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3){
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5){
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6){
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7){
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8){
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9){
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10){
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {

  0%{
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
  }

  100%{
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
  }

}
.about-section {
  position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
  }
  
  .image-container {
    z-index: 0;
    flex-basis: 50%;
  }
  
  .about-section img {
    width: 50%;
    border-radius: 50%;
    border-style: dotted;
    border-color: white;
    animation: rotatingBorder forwards 2s ease-in-out;
  }

  @keyframes rotatingBorder{
    0%{
      opacity: 0;
      scale: 0;
      transform: rotate(0deg);
    }
    40%{
      opacity: 1;
      scale: 1.2;
      transform: rotate(36deg);
    }
    60%{
      scale: 1;
      transform: rotate(-12deg);
    }
    70%{
      transform:rotate(6deg);
    }
    85%{
      transform: rotate(-1deg);
    }
  }
  
  .text-container {
    z-index: 1;
    flex-basis: 100%;
  }
  
  h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 18px;
    line-height: 1.5;
  }

  @import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");

  body,
html {
	display: grid;
	font-family: "Audiowide", cursive;
	color: #ffffff;
}
  

p {
	margin: auto;
}

.large {
	font-size: 1.2rem;
}

.small {
	font-size: 3rem;
}

.rise {
	text-shadow: -0.01em -0.01em 0.01em #000;
	animation: rise 2s ease-in-out 0.5s forwards;
}


.outline {
	background-clip: text;
	color: #ffdd40;
	animation: outline 1s ease-in-out 1.5s forwards;
}

@keyframes outline {
	from {
		text-shadow: 0em -7em 10em #000;
	}
	to {
		text-shadow: 0 0.02em #000, 0.02em 0 #000, -0.02em 0 #000, 0 -0.02em #000;
	}
}

.float {
	animation-name: float;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	position: absolute;
}

.float:nth-child(1) {
	left: 10%;
  top: 80%;
  width: 120;
	animation-delay: 0s;
}

.float:nth-child(2) {
  top: 80%;
  width: 100;
	left: 20%;
	animation-delay: -2s;
}

.float:nth-child(3) {
  top: 80%;
  width: 100;
	left: 30%;
	animation-delay: -4s;
}

.float:nth-child(4) {
  top: 80%;
  width: 80;
	left: 40%;
	animation-delay: -6s;
}

.float:nth-child(5) {
  top: 80%;
  width: 90;
	left: 50%;
	animation-delay: -8s;
}

.float:nth-child(6) {
  top: 80%;
  width: 140;
	left: 60%;
	animation-delay: -10s;
}

.float:nth-child(7) {
  top: 80%;
  width: 140;
	left: 70%;
	animation-delay: -12s;
}

.float:nth-child(8) {
  top: 80%;
  width: 100;
	left: 80%;
	animation-delay: -14s;
}

@keyframes float {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -30%);
	}
	100% {
		transform: translate(0, 0);
	}
}

.content {
	position: relative;
	z-index: -1;
	text-align: center;
}

.download-btn {
  --c:  #ff0000; /* the color*/
  
  box-shadow: 0 0 0 .1em inset var(--c); 
  --_g: linear-gradient(var(--c) 0 0) no-repeat;
  background: 
    var(--_g) calc(var(--_p,0%) - 100%) 0%,
    var(--_g) calc(200% - var(--_p,0%)) 0%,
    var(--_g) calc(var(--_p,0%) - 100%) 100%,
    var(--_g) calc(200% - var(--_p,0%)) 100%;
  background-size: 50.5% calc(var(--_p,0%)/2 + .5%);
  outline-offset: .1em;
  transition: background-size .4s, background-position 0s .4s;
}
.download-btn:hover {
  --_p: 100%;
  transition: background-position .4s, background-size 0s;
}
.download-btn:active {
  box-shadow: 0 0 9e9q inset rgba(255, 255, 255, 0.6); 
  background-color: var(--c);
  color: #fff;
}

.download-btn {
  cursor: pointer;
  padding: .6em .6em;
  font-weight: bold;  
  border: none;
  color: white;
  font-family: "Audiowide", cursive;
  border-radius: 10%;
}

@media only screen and (max-height: 1080px) {    
  body,
  html {
    font-family: "Audiowide", cursive;
  }
  
  .text-container{
    margin-left: -400px;
  }

  .image-container{
    margin-right: 100px;
    padding-left: 100px;
    padding-bottom: 500px;
  }

  .download-btn{
    font-size: 2rem;
  }

  .area{
    width: 100%;
    height: 100vh;
  }
}

@media only screen and (max-height: 720px) {    
  body,
  html {
    height: -100000px;
    font-size: smaller;
    font-family: "Audiowide", cursive;
  }

  .area{
    width: 100%;
    height: 400%;
  }

  .circles li{
    bottom: -150px;
  }  

  .text-container{
    margin-left: -300px;
    margin-top: -140px;
  }

  .image-container{
    margin-right: 10px;
    padding-left: 10px;
    padding-bottom: 500px;
  }

  .image-container img{
    width: 30%;
  }

  .download-btn{
    font-size: 1.4rem;
  }

  .float:nth-child(1) {
    left: 10%;
    top: 90%;
    width: 40;
  }

  img:hover {
    transform: translateY(10px);
  }

  
  .float:nth-child(2) {
    top: 90%;
    width: 35;
    left: 20%;
  }
  
  .float:nth-child(3) {
    top: 90%;
    width: 35;
    left: 30%;
  }
  
  .float:nth-child(4) {
    top: 90%;
    width: 30;
    left: 40%;
  }
  
  .float:nth-child(5) {
    top: 90%;
    width: 30;
    left: 50%;
  }
  
  .float:nth-child(6) {
    top: 90%;
    width: 60;
    left: 60%;
  }
  
  .float:nth-child(7) {
    top: 90%;
    width: 60;
    left: 70%;
  }
  
  .float:nth-child(8) {
    top: 90%;
    width: 40;
    left: 80%;
  }
}


@media only screen and (max-width: 1170px) and (max-height: 2532px){
  body,
  html {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, Courier, monospace;
    font-size: 1.6em;
  }

  .body{
    height: fit-content;
  }

  .text-container{
    margin-top: 20%;
    flex-basis: 150%;
  }

  .image-container{
    margin-bottom: 170%;
  }

  .image-container img{
    width: 5em;
  }

  .download-btn{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, Courier, monospace;
    position: absolute;
    top: 5%;
    right: 20%;
    display: block;
    font-size: larger;
    border-radius: 5%;
  }

  .area{
    width: 100%;
    height: 300%;
  }

  .float:nth-child(1) {
    left: 5%;
    top: 20%;
    width: 120;
    animation-delay: 0s;
  }
  
  .float:nth-child(2) {
    left: 5%;
    top: 28%;
    width: 110;
    animation-delay: -.3s;
  }
  
  .float:nth-child(3) {
    left: 5%;
    top: 36%;
    width: 110;
    animation-delay: -.6s;
  }
  
  .float:nth-child(4) {
    left: 5%;
    top: 44%;
    width: 100;
    animation-delay: -.9s;
  }
  
  .float:nth-child(5) {
    left: 5%;
    top: 53%;
    width: 90;
    animation-delay: -1.2s;
  }
  
  .float:nth-child(6) {
    left: 3%;
    top: 60%;
    width: 150;
    animation-delay: -1.5s;
  }
  
  .float:nth-child(7) {
    left: 5%;
    top: 68%;
    width: 190;
    animation-delay: -1.8s;
  }
  
  .float:nth-child(8) {
    left: 5%;
    top: 76%;
    width: 130;
    animation-delay: -2.1s;
  }  
}