/* CSS styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Title link styling */
.title-link {
    all: unset;
    cursor: pointer;
    color: black;
}

.title-link:link,
.title-link:visited,
.title-link:hover,
.title-link:active {
    all: unset;
    cursor: pointer;
    color: black;
}

.tagline {
    font-style: italic;
    margin-bottom: 1rem;
}

.input-container {
    margin-bottom: 1rem;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #000;
    font-size: 1rem;
}

textarea {
    min-height: 200px;
    resize: vertical;
}

button {
    display: block;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin: 1rem 0;
}

button:hover {
    background-color: #333;
}

footer {
    margin-top: 2rem;
    text-align: center;
}

footer a {
    color: #000;
    text-decoration: underline;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.hidden {
    display: none;
}
