@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: Inter, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  text-align: justify;
}

#container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
}

br {
  margin-bottom: 12px;
}

.flex-row {
  display: flex;
  height: 100%;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
}

.left-col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 260px;
}

.right-col {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  align-items: flex-start;
  margin-left: 18px;
}

.poster-box {
  color: white;
  height: 300px;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 4px;
  padding-bottom: 18px;
  margin-bottom: 12px;
}

.picture {
  height: 150px;
  width: 100%;
  background-color: red;
}

.poster-nav {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}

.poster-nav-list {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  align-items: flex-start;
  margin-left: 16px;
  margin-right: 16px;
  text-align: left;

  p {
    line-height: 2px;
  }
}

#title {
  font-size: 24px;
  letter-spacing: -1.5px;
  color: black;
  font-weight: 700;
  text-decoration: none;
}

.poster-box a {
  text-decoration: none;
  color: white;
  height: 28px;
}

header {
  display: flex;
  height: 76px;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px black solid;
}

.nav-items {
  margin-right: 12px;
}

.main-body {
  display: flex;
  justify-content: space-between;
}

.main-left {
  width: 108px;
  margin-right: 16px;
  text-align: left;
}

.main-right {
  width: 80%;
  margin-left: 16px;
}

.main-title {
  font-size: 12px;
  margin-bottom: 2px;
  line-height: 16px;
}

.main-date {
  font-size: 10px;
  margin: 0px;
}

@media only screen and (max-width: 600px) {
  .flex-row {
    flex-direction: column;
    justify-content: flex-start;
    width: 100vw;
  }

  .left-col {
    flex-direction: row;
    width: 100%;
  }

  .right-col {
    margin-left: 4%;
    margin-right: 4%;
  }

  .poster-box {
    min-width: 60vw;
    margin-bottom: 0;
    margin-right: 12px;
  }

  .picture {
    height: 100%;
  }
}
