@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
}
body {
   background: inherit;
   font-family: Poppins;
}
p a {
   color: cyan;
}
nav {
   background: transparent;
   backdrop-filter: blur(5px);
   width: 100%;
   height: 50px;
   display: flex;
   position: fixed;
   z-index: 9;
   top: 0;
   left: 0;
   right: 0;
   justify-content: space-between;
   padding: 5px;
   padding-right: 10px;
   padding-left: 10px;
   border-bottom: 2px solid grey;
   h1 {
      font-weight: bold;
      font-size: 25px;
   }
}
#send {
   background: linear-gradient(35deg, white, tomato, blue);
   width: 70px;
   height: 30px;
   border-radius: 10px;
   cursor: pointer;
   margin-top: 10px;
   margin-left: 5px;
   text-align: center;
}
#send:hover {
   transform: scale(90%);
   animation: submit 0.5s ease;
   opacity: 0.5;
}
@keyframes submit {
   from {
      transform: scale(100%);
      opacity: 1;
   }
   to {
      transform: scale(90%);
      opacity: 0.5;
   }
}
.profile {
   width: 100px;
   height: 100px;
   border-radius: 50px;
}
footer {
   background: black;
   color: white;
   bottom: 0;
   text-align: center;
   margin: 0;
   padding: 20px;
   width: 100%;
   h3 {
      font-weight: bold;
      font-size: 25px;
   }
}
main {
   flex: 1;
}
.input {
   padding-top: 5px;
   padding-bottom: 5px;
   display: flex
}

.toTop {
   background: #6344fd;
   border-radius: 40px;
   height: 40px;
   width: 40px;
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9;
   position: fixed;
   bottom: 30px;
   left: 30px;
}

.iklan {
   z-index: 17;
   display: none;
   align-items: center;
   justify-content: center;
   position: fixed;
   background: transparent;
   backdrop-filter: blur(15px);
   width: 100%;
   height: 100%;
   top: 0;
   h1 {
      font-weight: bold;
      font-size: 30px;
   }
}

/*loader*/

.loader {
   background: transparent;
   backdrop-filter: blur(50px);
   z-index: 19;
   width: 100%;
   height: 100%;
   position: fixed;
   top: 0;
   bottom: 0;
   display: none;
   justify-content: center;
   align-items: center;
   padding: 50%;
   color: #6344fd;
   font-weight: bold;
   font-size: 25px;
   animation: fadeout 2s ease;
}

@keyframes fadeout {
   0% {
      opacity: 1;
   }
   50% {
      opacity: 1;
   }
   100% {
      opacity: 0;
   }
}

.loader-3 {
  position: absolute;
  scale: 2;
  width: 89.6px;
  height: 89.6px;
  border-radius: 50%;
  border: 5.5px solid grey;
  box-sizing: content-box;
}

.loader-3:before {
  content: "";
  position: absolute;
  width: 4.5px;
  height: 38.1px;
  top: 9px;
  left: 42.6px;
  background: #6344fd;
  border-radius: 2.2px;
  transform-origin: 2.25px 37px;
  animation: progress-t59zy9 2s linear infinite;
}

.loader-3:after {
  content: "";
  position: absolute;
  width: 4.5px;
  height: 24.6px;
  top: 22.4px;
  left: 42.6px;
  background: #6344fd;
  border-radius: 2.2px;
  transform-origin: 2.25px 23.5px;
  animation: progress-t59zy9 12s linear infinite;
}

@keyframes progress-t59zy9 {
  0% {
    tranform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}