
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(#ffecd2 0%, #fcb69f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .loader {
    text-align: center;
  }
  
  .dots {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 20px;
  }
  
  .dot {
    width: 80px;
    height: 80px;
    background-color: #e53935;
    border-radius: 90%;
    animation: bounce 0.6s infinite alternate;
    box-shadow: 0 5px 0 rgba(0,0,0,0.2);
  }
  
  @keyframes bounce {
    0% {
      transform: translateY(10);
      box-shadow: 0 5px 0 rgba(0,0,0,0.2);
    }
    100% {
      transform: translateY(-20px);
      box-shadow: 0 15px 10px rgba(0,0,0,0.2);
    }
  }
  
  .text {
    color: #e53935;
    font-size: 24px;
    letter-spacing: 1px;
  }
  