body {
  font-family: 'Martel', serif;
  background-color: #d8c3a5;
  user-select: none;
}

.header {
  display: flex;
  justify-content: center;
}

.title {
  display: flex;
  width: 100%;
  height: 150px;
  overflow: hidden;
  align-items: center;
  border: .5rem solid #8e8d8a;
}

video {
  width: 100%;
}

.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: space-between;
}

.item {
  width: 100%;
  flex-wrap: wrap;
  background-color: #eae7dc;
  padding: .5rem;
  border: .5rem solid #8e8d8a;
  border-radius: 5px;
  margin: .5rem;
}

ul {
  margin-block-start: 0;
}

.code {
  font-family: Courier, serif;
}

.hit-area {
  position: relative;
  transition: all .25s ease-in;
}

.hit-area:hover {
  background-color: #d8c3a5;
}

.hit-area__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.content {
  margin-left: 10%;
  margin-right: 10%;
}

.is-mobile--visible {
  display: block;
}

.is-mobile--hidden {
  display: none;
}

.link-container {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-evenly;
}

.link {
  display: block;
  padding: 1rem;
  border: 2px solid #8e8d8a;
  border-radius: 12px;
  text-decoration: none;
  color: #000000;
  transition: all .25s ease-in;
}

.link:hover {
  background-color: #d8c3a5;
}

@media only screen and (min-width: 768px) {
  .header h1 {
    font-size: 5rem;
    margin: 0;
  }

  .title {
    height: 200px;
  }

  .item {
    flex: 300px;
  }

  .is-mobile--visible {
    display: none;
  }

  .is-mobile--hidden {
    display: flex;
  }
}

@media only screen and (min-width: 1441px) {
  .content {
    margin-left: 25%;
    margin-right: 25%;
  }

  .title {
    height: 300px;
  }
}
