@font-face {
  font-family: "California";
  src:
    local("California"),
    url("fonts/California.otf") format("opentype");
}
body {
  font-family: "California";
  font-size: 10vh;
  padding: 0;
  margin: 0;
  background-color: #e9e3d9;
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: #ff9e9f;
}
.main {
  display: grid;
  grid-template-columns: 60vw 40vw;
  grid-template-rows: 100vh;
  grid-template-areas: 'a b';
  grid-gap: 0;
}
.main .image {
  grid-area: a;
  background-image: url("images/menu/reading.jpg");
  background-position: bottom left;
  background-size: cover;
  background-repeat: no-repeat;
}
.main .menu {
  grid-area: b;
  display: grid;
  align-content: center;
}
.main .menu .home {
  text-align: center;
  position: absolute;
  right: 3vw;
  top: 3vh;
}
.main .menu .home a {
  display: inline-block;
  max-height: 8vh;
}
.main .menu .home img {
  max-height: 8vh;
}
.main .menu .link {
  margin-bottom: 5vh;
  margin-left: 3vw;
}
@media (orientation: portrait) {
  .main {
    grid-template-columns: 100vw;
    grid-template-rows: 40vh 60vh;
    grid-template-areas:
      'b'
      'a';
    text-align: center;
  }
  body {
    font-size: 5vh;
  }
  .main .menu .home {
    position: relative;
    right: auto;
    top: 2vh;
  }
  .main .menu .link {
    margin-bottom: 0;
    margin-left: 0;
  }
}
