::-webkit-scrollbar {
  width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
} 
/*body{
    background-color: purple;
}*/
body {
    background-image: linear-gradient(to right top, #5c2446, #863d82, #804da5, #6600cc, #5c00e6);
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    font-family: system-ui, sans-serif;
    /*overflow: hidden;*/
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}
.card{
    border: none;
    background: #eee;
    justify-content: center;
}
.search {
    width: 100%;
    margin-bottom: auto;
    margin-top: 20px;
    height: 50px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}
.search-input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    margin-top: 5px;
    caret-color: transparent;
    line-height: 10px;
    transition: width 0.4s linear
}
.search .search-input {
    padding: 0 10px;
    width: 100%;
    caret-color: #536bf6;
    font-size: 19px;
    font-weight: 300;
    color: black;
    transition: width 0.4s linear;
}
.search-icon {
    height: 34px;
    width: auto;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: purple;
    font-size: 10px;
    bottom: 30px;
    position: relative;
    border-radius: 5px;
}
.search-icon:hover{
  color: #fff !important;
}
a:link {
    text-decoration: none
}
.card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    transition: all 2s;
}
.card-inner:hover{
    transform: scale(1.1);
}
.mg-text span{
    font-size: 12px;
}
.mg-text{
    line-height: 14px;
}

.container1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: auto;
}

.countdown-item {
	flex-basis: 25%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.countdown-item h1 {
	font-size: 80px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.countdown-item p {
	font-size: 20px;
	margin: 0;
	padding: 0;
	text-align: center;
}


@media (max-width: 768px) {
  /* gaya CSS untuk tombol dan input ketika mode mobile */
  input {
    margin-bottom: 40px;
  }
  
  button {
    margin-top: 10px;
  }
  
}    


.squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/
}

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

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

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

.squares li:nth-child(3) {
    left: 70%;
    width: 30px;
    height: 30px;
    animation-delay: 2s;
}

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

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

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

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

.squares li:nth-child(8) {
    left: 50%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
    animation-duration: 30s;
}

.squares li:nth-child(9) {
    left: 20%;
    width: 30px;
    height: 30px;
    animation-delay: 2s;
    animation-duration: 25s;
}



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

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