.welcome {
    background-image: linear-gradient(#e6e6fa, 	#f5fffa);
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;

}

.square ul li {
    position: absolute;
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    list-style: none;
    opacity: 0;

}
.square li {
    top: 50vh;
    left: 45vw;
    animation: square 10s linear infinite;
}
.square li:nth-child(2) {
    top: 80vh;
    left: 10vw;
    animation-delay: 2s;
}

.square li:nth-child(3) {
    top: 80vh;
    left: 85vw;
    animation-delay: 4s;
}
.square li:nth-child(4) {
    top: 30vh;
    left: 60vw;
    animation-delay: 6s;
}
.square li:nth-child(5) {
    top: 30vh;
    left: 10vw;
    animation-delay: 8s;
}
@keyframes square {
    0%
    {
        transform: scale(0) rotateY(0deg);
        opacity: 1;
    }
    100%
    {
        transform: scale(5) rotateY(1000deg);
        opacity: 0;
    }
}
.circle ul li {
    position: absolute;
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    list-style: none;
    opacity: 0;
    background: #fff;
}
.circle li {
    bottom: 0vh;
    left: 5vw;
    animation: circle 10s linear infinite;
}
.circle li:nth-child(2) {
    left: 20vw;
    animation-delay: 2s;
}
.circle li:nth-child(3) {
    left: 40vw;
    animation-delay: 6s;
}
.circle li:nth-child(4) {
    left: 60vw;
    animation-delay: 4s;
}
.circle li:nth-child(5) {
    left: 85vw;
    animation-delay: 8s;
}
@keyframes circle {
    0%
    {
        transform: scale(0) rotate(0deg);
        opacity: 1;
        bottom: 0;
        border-radius: 0;
    }
    100%
    {
        transform: scale(5) rotate(1000deg);
        opacity: 0;
        bottom: 80vh;
        border-radius: 50%;
    }
}

.main h3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:cursive;
    font-size: 2.5em;
    color: #2f4f4f;
}

section {
    position: relative;
    width: 100%;
    height: 5vh;
    margin: auto;
    border: 1px solid orange;
    overflow: hidden;
}

section .scroll div {
    color: #333300;
    font-size: 1.30em;
    font-weight: 900;

    animation: animate 15s linear infinite;
}
@keyframes animate {
    0%
    {
        transform: translateX(100%);
    }
    100%
    {
        transform: translateX(-100%);
    }

}


.boxanimation {
  width: 710px;
  height: 300px;
  background:#d3d3d3;

}


.boxanimation {
    animation: wipe-enter 2s 1;
  }


@keyframes wipe-enter {
	0% {
		transform: scale(0, .025);
	}
	50% {
		transform: scale(1, .025);
	}
}

.innerbox {
    position: relative;
    top: 10%;
    left: 20%
    transform: translate(-50%, -50);
    width: 400px;
    height: 200px;
    font-size: 2em;
    line-height: 0.2em;

}




.loader {
    float: left;
    width: 300px;
    padding: 10px;
    animation: changeBg 5s linear infinite;

}
@keyframes rotate {
    to
    {
        filter: hue-rotate(360deg);
    }

}


.loader div {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(to top, #ffc107 40%, 1px solid orange);
  border-radius: 50%;
  animation: rotate 5s 100;
}

@keyframes rotate {
    to
    {
        transform: rotate(360deg);
    }

}

.loader div::before {
    content: 'B';
    position: absolute;
    background: 1px solid orange;
    inset: 20px 20px 0 10;
    border-radius: 50%;
}
.loader div::after {
    content: '';
    position: absolute;
    top: 50px;
    left: -8px;
    width: 30px;
    height: 30px;
    background: 1px solid orange;
    border-radius: 50%;
    box-shadow: 0 0 5px solid orange, 0 0 25px solid orange, 0 0 50px solid orange, 0 0 75px solid orange;
}


.vertical {
    border-left: 5px solid #ff4500;
    height: 250px;
    position: absolute;
    left: 90%;
    margin-left: -2px;
    top: 8%;
}
.innerbox1 {
    position: relative;
    top: 10%;
    transform: translate(-50%, -50);
    width: 370px;
    height: 240px;
    font-size: 2em;


}
#slideshow {

  position: relative;
  width: 320px;
  height: 220px;

}

#slideshow > div {
  position: absolute;
  top: 5px;
  left: 35px;
  right: 10px;
  bottom: 20px;
}

.text1 {
    color: #b22222;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
    position: relative;
    animation: text 3s 1;
}
.text2 {
    color: #2f4f4f;
    font-size: 20px;
    font-family:cursive

}
@keyframes text {
    0%
    {
        color: #b22222;
        margin-bottom: -40px;
    }
    30%
    {
        letter-spacing: 17px;
        margin-bottom: -40px;
    }
    85%
    {
        letter-spacing: 8px;
        margin-bottom: -40px;
    }
}