body{

  /* bg paradox */
  background-image: url("deepbg.jpeg"); 
  
  background-repeat: repeat;

    color: black;
    font-family: Papyrus;
}

/* Unvisited link*/
a:link {
  color: #e30577;
}
/* visited link */
a:visited {
  color: #a80239;
  
}

 #intro {
      border-radius: 25px;
      background-image: linear-gradient(to top,rgba(255, 107, 151, 0.8) 0%, rgba(255, 135, 171, 0.8) 64%, rgba(255, 180, 202, 0.8) 78%, rgba(255, 230, 241, 0.8) 88%, rgba(255, 176, 206, 0.8) 95%, rgba(255, 117, 159, 0.8) 100%);
      border: #d9185f 7px double;
      height: 140px;
      width: 700px;
      padding: 5px;
      background-position: center;
      background-attachment: fixed; 
      margin: auto;
    }
    
    #blinkies {
      border-radius: 25px;
      background-image: linear-gradient(to top,rgba(255, 107, 151, 0.8) 0%, rgba(255, 135, 171, 0.8) 64%, rgba(255, 180, 202, 0.8) 78%, rgba(255, 230, 241, 0.8) 88%, rgba(255, 176, 206, 0.8) 95%, rgba(255, 117, 159, 0.8) 100%);
      border: #d9185f 7px double;
      height: 150px;
      width: 800px;
      padding: 5px;
      background-position: center;
      background-attachment: fixed; 
      margin: auto;
    }
    
    #buttons {
      border-radius: 25px;
      background-image: linear-gradient(to top,rgba(255, 107, 151, 0.8) 0%, rgba(255, 135, 171, 0.8) 64%, rgba(255, 180, 202, 0.8) 78%, rgba(255, 230, 241, 0.8) 88%, rgba(255, 176, 206, 0.8) 95%, rgba(255, 117, 159, 0.8) 100%);
      border: #d9185f 7px double;
      height: 100px;
      width: 600px;
      padding: 5px;
      background-position: center;
      background-attachment: fixed; 
      margin: auto;
    }
    
     #stamps {
      border-radius: 25px;
      background-image: linear-gradient(to top,rgba(255, 107, 151, 0.8) 0%, rgba(255, 135, 171, 0.8) 64%, rgba(255, 180, 202, 0.8) 78%, rgba(255, 230, 241, 0.8) 88%, rgba(255, 176, 206, 0.8) 95%, rgba(255, 117, 159, 0.8) 100%);
      border: #d9185f 7px double;
      height: 210px;
      width: 800px;
      padding: 5px;
      background-position: center;
      background-attachment: fixed; 
      margin: auto;
    }
    
       #html3 {
      text-align: center;
    }
   
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.star {
  position: absolute;
  top: -20px;
  color: #fff;
  animation: animate 5s linear forwards;
  /* you can set infinite too */
}

.star::before {
  content: "\f005";
  font-family: FontAwesome;
  text-shadow: 0 0 5px #fff, 0 0 20px #fff, 0 0 50px #fff;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  .star {
    font-size: 8px;
  }
}

