h1 {
  font-family: 'libre_baskerville_bold';
  font-size: 20px;
  text-align: center
}
main {
  display: grid;
  grid-template-columns: 9fr 1fr;
  margin: 10px 20px;
}
main div:last-of-type {
  padding-left: 10px;
}
button {
  font-family: 'libre_baskerville_bold';
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1025px) {
  body {
    background-attachment: fixed;
    background-image: url('/image/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    margin: 0;
    width: 100%;
  }
  h1 {
    font-size: 56px;
  }
  main {
    bottom: 0;
    margin: 10px 120px;
    position: absolute;
    top: 152px;
  }
}

