h1 {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  span {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  select {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6rem;
    option {
      font-size: 1rem;
      line-height: 1.6rem;
    }
  }
}
form {
  max-width: 100%;
}
#date {
  min-width: 16rem;
  width: 100%;
}
#submit {
  width: 100%;
  max-width: 36rem;
}

#result {
  border: 4px dashed var(--color-link);
  padding: 0.5rem 1rem;

  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
#copy {
  height: 2rem;
  cursor: pointer;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 3rem;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

ul {
  padding-left: 0px;

  li {
    display: inline-block;
  }
}
