body { font-family: "Manjari", sans-serif; text-align: center; background-repeat: repeat-y; background-size: cover; } .bg { animation: slide 3s ease-in-out infinite alternate; background: rgb(246, 153, 4); background: linear-gradient( -100deg, rgba(246, 153, 4, 1) 50%, rgba(255, 230, 0, 1) 50%, rgba(255, 56, 56, 1) 95% ); bottom: 0; left: -50%; opacity: 0.5; position: fixed; right: -50%; top: 0; z-index: -1; } .body-bg { animation: slide 3s ease-in-out infinite alternate; background: rgb(7, 6, 96); background: linear-gradient(-65deg, #52318e 50%, #522f43 25%, #903939 50%); bottom: 0; left: -50%; opacity: 0.5; position: fixed; right: -50%; top: 0; z-index: -1; } .bg2 { animation-direction: alternate-reverse; animation-duration: 4s; } .bg3 { animation-duration: 5s; } .bg4 { animation-direction: alternate-reverse; animation-duration: 4s; } .bg5 { animation-duration: 5s; } @keyframes slide { 0% { transform: translateX(-25%); } 100% { transform: translateX(25%); } } .container { margin-top: 100px; } .tech-quiz { width: 300px; } .card-pad { padding: 10px; } .jumbotron { margin-top: 5px; margin-bottom: 30px; } .hide { display: none; } .loading-text { display: block; position: relative; top: 200px; font-family: "Oswald", sans-serif; text-align: center; height: 700px; } .no-scroll { overflow: hidden; } .loading-site { width: 100%; height: 100%; background-size: cover; overflow: hidden; } .box { width: 50px; height: 50px; background-color: red; position: absolute; border-radius: 5px; margin: 10px; } .text { width: 300px; background-color: pink; display: inline-block; } .anima { animation-name: example; animation-duration: 4s; animation-iteration-count: infinite; } @keyframes example { 0% { background-color: #f69904; transform: rotate(0deg); left: 50px; } 25% { background-color: #ffe600; transform: rotate(90deg); left: 100px; } 50% { background-color: #ff7425; transform: rotate(180deg); left: 150px; } 75% { background-color: #ff3838; transform: rotate(270deg); left: 200px; } 100% { background-color: #ff3838; transform: rotate(360deg); left: 250px; } } .text-random { color: white; animation-duration: 1s; animation-direction: alternate-reverse; } .text-random-two { color: #0089ce; animation-duration: 1s; animation-direction: alternate-reverse; } #countdown { color: #fefedf; font-weight: 100; font-size: 40px; margin: 40px 0px 20px; } #clockdiv { font-family: sans-serif; color: black; display: inline-block; font-weight: 100; text-align: center; font-size: 30px; } #clockdiv > div { padding: 10px; border-radius: 50%; background: #ffffff; display: inline-block; width: 100px; height: 100px; box-shadow: 5px 10px 8px #343138; } @keyframes flip { 100% { transform: rotateY(180deg); } } #clockdiv div > span { padding: 15px; border-radius: 50%; background: #ffffff; display: inline-block; width: 80px; height: 80px; } .smalltext { padding: 20px; font-size: 16px; font-weight: bolder; text-align: center; color: white; } .carousel { height: 300px; width: 300px; margin: 20px; padding-left: 40px; padding-right: 40px; } #clockdiv { margin: 10px; }