body,
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  min-height: 100svh;
}

.page {
  flex: 1;
}

header {
  width: 100%;

  & > img {
    height: 12rem;
    margin-bottom: 0;
  }

  & > h1 {
    margin-top: 0;
  }

  & > p {
    text-align: center;
    max-width: 60svw;
  }
}

input {
  width: 100%;
}

#container {
  width: 100%;
  max-width: 30rem;
}

.confirmation-box {
  margin-top: auto;
  margin-bottom: 5rem;

  .msg {
    margin-bottom: 1rem;
  }
}

#results {
  padding: 0;
  margin-bottom: 5rem;

  & li {
    list-style: none;
    background-color: var(--background-light);
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 3pt;

    .details {
      margin-right: 1rem;

      & h3,
      & p {
        margin: 0.1em 0;
      }
    }

    button {
      margin-left: auto;
    }
  }
}
