/* Style the form container */
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  background-color: #f7f7f7;
  font-family: 'Poppins', sans-serif;
}

/* Style the form header */
h1 {
  text-align: center;
  font-size: 32px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Style the form labels */
label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* Style the form inputs */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  background-color: #f0f0f0;
}

/* Style the radio button labels */
input[type="radio"] + label {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #333;
}

/* Style the form select */
select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  background-color: #f0f0f0;
}

/* Style the form buttons */
input[type="submit"],
input[type="reset"] {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background-color: #333;
  cursor: pointer;
}

/* Style the form buttons on hover */
input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #555;
}

/* Set height, display, justify-content, and align-items properties for nav */
nav {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Set list-style, margin, padding, and display properties for nav ul */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; 
}

/* Set display, padding, colour, text-decoration, font, font-size, font-weight, text-transform, and transition properties for nav ul a */
nav ul a {
  display: block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

/* Set background colour and font colour properties for nav ul a:hover */
nav ul a:hover {
  background-color: #333;
  color: #f5f5f5;
}