/* Global styles */
body {
  margin: 0;
  font-family: "Oswald", sans-serif;
  height: 100vh;
  background: linear-gradient(to bottom, hsl(0, 100%, 76%), rgb(240, 240, 240));
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #222;
}

/* Page title */
h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 2rem;
  color: #333;
}

/* Form container */
form {
  max-width: 600px;
  margin: 0px auto;
  margin-bottom: 500px;
  padding: 30px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

/* Form elements */
label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  font-size: 1rem;
  border: 1px solid #aaa;
  border-radius: 5px;
  box-sizing: border-box;
}

textarea {
  height: 150px;
  resize: vertical;
  font-family: monospace;
}

#preview {
  font-family: sans-serif;
}

/* Button styling */
button {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 25px;
  margin-bottom: 50px;
  font-size: 1.1rem;
  background-color: #b30000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #990000;
}

/* Preview section */
h3 {
  margin-top: 30px;
}

#preview {
  border: 1px solid #ccc;
  padding: 15px;
  min-height: 100px;
  background: #fafafa;
  border-radius: 6px;
  margin-top: 10px;
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;   /* Black background */
  color: white;             /* White text */
  text-align: center;
  padding: 10px 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  z-index: 15;            /* Stay above other content */
}

.bottom-banner a {
  color: white;
  text-decoration: none;
}

.bottom-banner a:hover {
  text-decoration: underline;
}