body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   background: #630d2d;
   background: linear-gradient(135deg, #3a0ca3, #7209b7, #f72585);
  startColorstr="#6B1C39",
  endColorstr="#302410",
  GradientType=0
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #E0D7D7;
}

.progress {
    width: 80%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 20px auto;
    overflow: hidden;
    height: 20px;
}

.progress-bar {
    width: 15%;
    height: 100%;
    background: #00ffcc;
    animation: loading 4s infinite alternate;
}

@keyframes loading {
    from { width: 5%; }
    to { width: 80%; }
}

.contact {
    margin: 20px 0;
    font-weight: bold;
}

a {
    color: #F2EBEB;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
