
/* Deanna Belle Landing Page */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
.limelight-regular {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
}

    body {
        background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 50%, #312e81 100%);
        min-height: 100vh;
        text-align: center;
        position: relative;
        overflow-x: hidden;
        margin:2rem;
    }
    
    .container {
        text-align: center;
        padding: 48px 32px;
        position: relative;
        z-index: 10;
    }
    
    .main-title {
        font-size: clamp(2rem, 5vw, 6rem);
        color: white;
        margin: 24px 0;
        letter-spacing: -0.025em;
        line-height: 3;
        font-family: "Limelight", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .decorative-dots {
        display: flex;
        justify-content: center;
        gap: 32px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        opacity: 0.6;
    }
    
    .dot-purple {
        background: #a78bfa;
    }
    
    .dot-blue {
        background: #60a5fa;
    }
 