/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 09 2023 | 14:54:20 */
@media only screen and (max-width: 479px) {
.context {
    position: absolute;
  	margin-left: -4%;
	  margin-top: 9pt;
		min-width: 100%;
}
}
@media only screen and (min-width: 480px) and (max-width: 991px) {
.context {
    position: absolute;
  	margin-left: -3%;
	  margin-top: 9pt;
		min-width: 100%;
}	
}
@media only screen and (min-width:768px) and (max-width: 1169px) {
.context {
    position: absolute;
  	margin-left: -15.3%;
	  margin-top: 9pt;
		min-width: 100%;
}
}
@media only screen and (min-width:1170px) {
.context {
    position: absolute;
  	right: 46.4%;
	  margin-top: 9pt;
}
}
.context h1{
    text-align: center;
    color: rgba(102,102,102, .5);
    font-size: 50px;
}
.circles {
  position: absolute;
  width: 80%;
  height: 60%;
}
.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(244, 160, 36, .5);
    animation: animate 5s linear infinite;
    bottom: -180px;
}
.circles li:nth-child(1){
    left: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
		animation-duration: 14s;
}
.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 12s;
}
.circles li:nth-child(3){
    left: 95%;
    width: 1px;
    height: 1px;
    animation-delay: 0s;
		animation-duration: 13s;
}
.circles li:nth-child(4){
    left: 45%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.circles li:nth-child(5){
    left: 65%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
		animation-duration: 15s;
}
.circles li:nth-child(6){
    left: 75%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
		  animation-duration: 11s;
}
.circles li:nth-child(7){
    left: 32%;
    width: 110px;
    height: 110px;
    animation-delay: 0s;
	  animation-duration: 25s;
}
.circles li:nth-child(8){
    left: 57%;
    width: 25px;
    height: 25px;
    animation-delay: 0s;
    animation-duration: 22s;
}
.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 0s;
    animation-duration: 35s;
}
.circles li:nth-child(10){
    left: 85%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
    animation-duration: 14s;
}
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}