@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

*{
    padding: 0px;
    margin: 0px;
}
body{
    font-family: 'Raleway', sans-serif;
    background-image: url("aaa/img/comet_logo.png");

    background-repeat: no-repeat;
    background-position: top;
    background-size: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}
h1 {
    margin-top: 50px;
    font-size: 50px;
    color: black;
  }
  
  p {
    font-size: 20px;
    color: black;
  }
  
  button {
    display: block;
    margin-top: 40px;
    padding: 20px 40px;
    background-color: #223a81;
    color: white;
    font-size: 25px;
    border-radius: 10px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #3b5ec6;
  }



  /* Animasi nya saya mencuri kk ehe....*/
  .loader {
    column-gap: 200px;
    display: none;
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position:relative;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: #223a81;
    letter-spacing: 0.2em;
  }
  .loader::before, .loader::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #223a81;
    position: absolute;
    animation: load 0.7s infinite alternate ease-in-out;
  }
  .loader::before {
    top: 0;
  }
  .loader::after {
    bottom: 0;
  }
  @keyframes load {
    0% {
      left: 0;
      height: 30px;
      width: 15px;
    }
    50% {
      height: 8px;
      width: 40px;
    }
    100% {
      left: 235px;
      height: 30px;
      width: 15px;
    }
  }
  