body {
  color: #272142;
  background: radial-gradient(
    circle at -8.9% 51.2%,
    rgb(255, 124, 0) 0%,
    rgb(255, 124, 0) 15.9%,
    rgb(255, 163, 77) 15.9%,
    rgb(255, 163, 77) 24.4%,
    rgb(19, 30, 37) 24.5%,
    rgb(19, 30, 37) 66%
  );
  min-height: 100vh;

  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  background: white;
  max-width: 600px;
  display: block;
  margin: 120px auto 0;
  padding: 30px;
  border-radius: 30px;
}
h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 10px;
}

header label {
  display: block;
  margin: 0 auto 5px;
  font-size: 16px;
  text-align: center;
}
header .cities-list {
  width: 90%;
  padding: 10px 15px;
  display: block;
  margin: 0 auto 10px;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
}
main .each-city-remove-button button {
  background: rgb(255, 124, 0);
  padding: 6px 12px;
  border: 1px solid rgb(255, 124, 0);
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  top: 17px;
  left: 10px;
  transition: all 200ms ease-in-out;
}

main .each-city-remove-button button:hover {
  background-color: rgb(255, 163, 77);
  cursor: pointer;
}

main .each-city {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #938fa1;
  padding: 20px;
}
main .each-city:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
main .each-city-name {
  font-size: 32px;
}

main .each-city-date {
  color: #938fa1;
}

main .each-city-time {
  font-size: 48px;
  position: relative;
  right: 6px;
}
footer {
  text-align: center;
  font-size: 14px;
  color: white;
  margin-top: 5px;
}
footer a {
  color: rgb(255, 124, 0);
}
