html {
  box-sizing: border-box;
}

*::before, *, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-family: Roboto;
}

ul, ol {
  list-style: none;
}

button {
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
}

body {
  background: #eee;
  height: 100vh;
  padding-bottom: 2rem;
}

main {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 400px);
  justify-content: center;
  gap: 2rem;

  h1 {
    margin-block-start: 2rem;
    font-size: 3rem;
    grid-column: 1 / span 2;
  }

  #date {
    margin-block-start: 1rem;
    font-size: 1.5rem;
    grid-column: 1 / span 2;
  }

  .side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;

    p {
      font-size: 1.5rem;
    }
  }

  #sell-prices, #buy-prices {
    max-height: 20rem;
    overflow-y: scroll;
  }
}