body {
  background-color: darkorange;
  color: white;
  text-shadow: -2px 2px 10px black;
}

button {
  background-color: rgb(0, 0, 0);
  color: white;
  text-shadow: -2px 2px 10px black;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: rgb(255, 0, 0);
  text-shadow: -2px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

button:active {
  background-color: darkorange;
  transform: translateY(2px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

form {
  font-size: 20px;

  max-width: 300px;
  margin: 40px auto;
  padding: 20px;
  background-color: maroon;
  border: 2px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

select {
  font-size: 20px;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  background-color: white;
  border: 2px solid #ccc;
}

select:focus {
  border-color: #aaa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="submit"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  font-size: 16px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

input[type="submit"]:hover {
  background-color: #3e8e41;
}

/* Style the radio buttons */
input[type="radio"] {
  margin: 10px;
  vertical-align: middle;
  color: red;
}

/* Style the labels */
input[type="radio"] + span {
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin-left: 10px;
  color: red;
}

/* Style the selected radio button */
input[type="radio"]:checked + span {
  color: red;
  font-weight: bold;
}

/* Add some space between the radio buttons */
input[type="radio"] + br {
  margin-bottom: 10px;
}

.code-example {
  color: white;
  background-color: #000000;
  padding: 10px;
  border: 2px solid #9a4f4f;
}

img {
  width: 300px;
  height: 300px;
}
