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

body {
    max-width: 600px;
    margin: 4rem auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1 {
    margin-bottom: 1rem;
}

h2,
h3 {
    margin-bottom: 0.5rem;
}

textarea {
    width: 100%;
    height: 150px;
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    background: black;
    color: white;
    border: none;
    border-radius: 4px;
}

.step {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.separator {
    width: 100%;
    height: 40px;
    margin: 1rem 0;
    color: #ccc;
}

#result {
    color: green;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
li {
    margin-bottom: 0.5rem;
}

fieldset {
    border: 1px solid #ccc;
    padding: 6px 1rem 1rem 1rem;
    border-radius: 1rem;
}
legend {
    padding: 0 0.5rem;
    font-weight: bold;
}
