body {
      font-family: Georgia, 'Times New Roman', Times, serif;
      color: white;
}
#h2 {
      text-align: center;
      color: rgb(103, 106, 109);
}
input {
      display: flex;
      justify-self: center;
      height: 25px;
      width: 250px;
      background-color: rgb(250, 246, 241);
      border-radius: 5px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
}
#submit-button {
      display: flex;
      background-color: blue;
      justify-self: center;
      position: relative;
      bottom: 20px;
      margin-left: 100px;
      margin-top: 20px;
      border: none;
      border-radius: 5px;
}
#Delete-button {
      display: flex;
      justify-self: center;
      background-color: rgb(255, 0, 0);
      position: relative;
      top: 20px;
      right: 30px;
      font-weight: 50px;
      border: none;
      border-radius: 5px;
}
button:hover {
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
      transform: scale(1.05);
}