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

/* Background gradient and basic layout */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff0099, #8a2be2);
    color: white;
    text-align: center;
    margin: 0;
}

/* Title style */
.title {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
}

/* Content style */
.content {
    font-size: 1.2em;
    /* max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6; */
}


footer {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
    text-decoration-style: dashed;
}