html {
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background-color: #222;
  color: #eee;
}
body {
  min-height: 100vh;
  background-color: inherit;
  color: inherit;
}
header,
main {
  margin: 1rem 2rem;
}
main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
}
h1 {
  color: orangered;
  font-weight: 700;
}
h2 {
  color: orange;
  font-weight: 700;
}
p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
form {
  outline: 1px solid #999;
}
form p {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}
label,
input {
  font-size: 1rem;
  margin: 0.5rem 0;
}
main img {
  width: clamp(200px, 400px, 600px);
}
main a {
  color: orange;
  text-decoration-style: wavy;
}
button {
  font-size: 1rem;
  background-color: cornflowerblue;
  color: white;
  padding: 0.25rem 2rem;
  border: none;
}