body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    margin: 0;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
h1, h2, h3 {
    margin: 0;
    color: black;
    transition: transform 0.3s, text-shadow 0.3s;
}

h1 {
    font-size: 60px;
    font-weight: bold;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}
h1:hover, h2:hover, h3:hover {
    transform: scale(1.05);
    color:#89E964;
    text-shadow: 
        0 0 10px #89E964,
        0 0 20px #89E964,
        0 0 30px #89E964;
}

button {
    background: linear-gradient(135deg, #999B97, #3E3E3E);
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(135deg, #89E964, #386526);
    box-shadow: 0 0 20px #89E964, 0 0 30px #89E964, 0 0 40px #89E964;
    color:white;
    transform: scale(1.05);
}
button:active {
    transform: scale(0.95);
}

