
/* Styling for Project 1 of PHP Course
 *
 * Greg Buchmann October 15, 2023
 *
 */



h1 {
  text-align: center;
}

/* ID that centers the validation text */
#validation {
  text-align: center;
}

label {
  font-weight: bold;
}

.center {
  margin: auto;
  width: 75%;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 15px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: center;
  padding: 8px;
  font-size: .75em;
}

.responsive {
  width: 100%;
  height: auto;
}


