* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Courier New", "Monaco", "Lucida Console", "Arial";
}

body {
  background: lightgray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
}

section {
  background: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  height: 250px;
  border-radius: 25px;
  padding: 30px 0;
  margin-top: 20px;
}

img {
  height: 12vh;
}

h1 {
  color: white;

}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 120px;
}

article {
  display: flex;
  justify-content: space-between;
  width: 340px;
  padding: 0 5px;
}

label {
  color: white;
}

input {
  width: 250px;
  text-align: center;
  border-radius: 5px;
}

input:focus {
  background-color: lightyellow;
}

button {
  width: 75px;
  border-radius: 50px;
  height: 30px;
}

hr {
  width: 350px;
}

h4 {
  width: 100%;
  text-align: center;
  color: lightyellow;
}
