* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    background-color: #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.container {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 40px auto;
}

h1 {
    font-size: 2.5rem;
    color: #8a2be2; /* Purple */
    margin-bottom: 20px;
}

.wizard-image img {
    width: 300px;
    margin-bottom: 20px;
}

.message {
    font-size: 1.5rem;
    color: #32cd32; /* Green */
    margin-bottom: 20px;
}

.reasons {
    text-align: left;
    margin-bottom: 30px;
}

.reasons ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #fff;
}

.reasons li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.strong {
    color: #8a2be2; /* Purple */
}

.closing-message {
    font-size: 1.5rem;
    color: #9acd32; /* Lighter Green */
}
