body,
input,
textarea {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
        'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    text-align: center;
    background-color: #f0f0f0;
    padding: 16px;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

input,
textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin: 8px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    display: inline-block;
    width: calc(50% - 16px);
    max-width: 300px;
    margin: 8px;
    padding: 16px 0;
    font-size: 20px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}
