* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #5a34d4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #3d1a8d;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    border: none;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1em;
    resize: none;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1em;
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

button:hover {
    background-color: #45a049;
}
