* {
  box-sizing: border-box;
}
* body {
  background: #000;
  color: #fff;
  font-family: Helvetica;
}
h1 {
  text-align: center;
  font-family: courier;
  font-style: oblique;
  color: #edd017;
  animation: h1 0.3s alternate infinite;
}
@keyframes h1 {
  to {
    color: #ed6517;
  }
}
label {
  margin: 10px 5px;
}
fieldset {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #fff;
}
input {
  border: 1px solid #ddd;
  padding: 3px;
}
.deletefield {
  float: right;
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid thin #fff;
  border-radius: 5px;
  color: #fff;
}