body {
  color: rgb(126, 170, 255);
  background-color: rgb(27, 27, 87);
  text-align: center;
}
.template {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 8px 8px 10px rgb(255, 255, 255);
}
header {
  padding: 20px;
}
h1,
h2 {
  font-size: 45px;
  margin: 0;
}

.plan-form {
  display: flex;
  justify-content: center;
  margin: 0 0 10px 0;
}

.user-instruction {
  background: rgb(27, 27, 87);
  color: rgb(126, 170, 255);
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 50px;
  width: 40%;
}
.user-instruction:hover {
  box-shadow: 3px 3px 5px rgb(255, 255, 255);
  color: rgb(252, 88, 115);
}
.create-button {
  background: rgb(27, 27, 87);
  color: rgb(126, 170, 255);
  padding: 10px 20px;
  margin-left: 8px;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid white;
}

.create-button:hover {
  box-shadow: 3px 3px 5px rgb(255, 255, 255);
  cursor: pointer;
  color: rgb(252, 88, 115);
}

.hint {
  font-size: 10px;
  text-align: left;
  margin: 8px 0 10px 130px;
}

.hint:hover {
  font-size: 20px;
}
.workout-plan {
  padding: 20px 0 0 0;
  margin-bottom: 30px;
  line-height: 30px;
}

ul {
  list-style: none;
}

footer {
  border-top: 1px solid rgba(180, 205, 255, 0.2);
  padding-top: 10px;
  font-size: 12px;
}

a {
  text-decoration: none;
  margin: 0 5px;
}

a:hover {
  text-decoration: underline;
  color: rgb(252, 88, 115);
}
