
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Trebuchet MS", sans-serif;
    text-align: center;

    background: linear-gradient(135deg, #f3e8ff, #d8b4fe, #c084fc);
    color: #4c1d95;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 35px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(128, 90, 213, 0.25);
}

h2 {
    font-size: 1.4rem;
    font-weight: normal;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(128, 90, 213, 0.2);
}


body::before,
body::after {
    content: "✦";
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

body::before {
    top: 15%;
    left: 20%;
}

body::after {
    bottom: 15%;
    right: 20%;
}