body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
    background: #30e7aa;
    color: #ffffff
}

h1,
h2,
h3 {
    margin: 10px 0;
}


.static {
    font-size: 1rem;
    line-height: 1.5;
}

.styled {
    font-size: 1.2rem;
    background: linear-gradient(120deg, #ff00dd, #631c53);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.styled:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.interactive {
    margin-top: 20px;
    padding: 12px 16px;
    border: 2px dashed #555;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.interactive:hover {
    background: #efefef;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #333;
}

footer a {
    color: #007bff;
    text-decoration: none;
}