/* styles.css */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

span {
    color: #6a0dad;
    font-weight: bold;
    text-decoration: underline;
}

p {
    margin: 20px 0;
    font-size: 1.2em;
    line-height: 1.5;
}

.image-container {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: blur(10px);
    transition: filter 0.3s ease-in-out;
}

.image-container:hover img {
    filter: blur(0);
}

button {
    background-color: #6a0dad;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #501c8e;
}
