/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #334443;
  background-color: #f0f0f0;
}

/* Typography */
h3 {
  margin: 0 0.5rem;
  padding-left: 0.5rem;
  background-color: #fdeedd;
}

p {
  margin: 0 0 1rem 0.5rem;
}

/* Title Section */
.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 2rem 0;
  padding-left: 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: bisque;
}

/* Links */
.clean {
  color: inherit;
  text-decoration: none;
}

.clean:hover {
  text-decoration: none;
}

/* Project Metadata */
.project-date {
  margin-left: -2px;
  font-size: 0.5rem;
  color: rgba(82, 82, 82, 0.3);
  vertical-align: bottom;
}

/* Form Inputs */
#question,
#option {
  width: 15rem;
  height: 2rem;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Layout */
#main_part {
  margin-left: 1rem;
}

/* Contact Link */
#contact {
  align-self: flex-end;
  margin-right: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #007acc;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

#contact:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}