/* custom.css */

/* General Page Typography */
body {
  font-size: 1.05rem;
  line-height: 1.7;
  background-color: #fffdf8;
}

/* Section Headings */
h2 {
  margin-bottom: 1.2rem;
  text-decoration: underline dotted #666;
}

/* Hero Section */
header {
  padding: 4rem 1rem;
  background-color: #fff3cd;
  border: 2px dashed #999;
  border-radius: 10px;
  box-shadow: 3px 3px 0 #ccc;
}

.nice-text {
  color: #2c3e50;         /* A pleasant dark blue-gray */
  font-style: normal;     /* Removes italics */
  font-weight: 500;       /* Medium boldness */
}

/* Cards */
.card {
  border-style: dashed;
  border-width: 2px;
  transition: transform 0.3s ease-in-out;
}
.card:hover {
  transform: scale(1.03);
}

/* Forms */
.form-label {
  font-weight: bold;
}
button[type="submit"], .btn-lg {
  font-size: 1.1rem;
  border-width: 2px;
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #444;
}