* {
  margin: 0;
  box-sizing: border-box; }

html {
  font-size: 30px; }

body {
  width: 1920px;
  height: 1080px;
  background-image: url("/ds/asien-background.jpeg");
  background-repeat: no-repeat;
  background-size: 1920px 1080px;
  font-family: "Signika", sans-serif; }

main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }
  main h2 {
    font-size: 2.5rem; }

.contents {
  width: 90%;
  height: 90%;
  background: black;
  color: white;
  display: grid;
  border: 5px solid white; }
  .contents .price {
    color: red;
    font-weight: bold; }

.contents.asien {
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem; }
  .contents.asien .meals {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem; }
    .contents.asien .meals h2 {
      font-size: 3.3rem;
      margin: 0;
      white-space: nowrap;
      text-align: left;
      line-height: 1; }
      .contents.asien .meals h2 span {
        vertical-align: middle; }
    .contents.asien .meals .items {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.7rem; }
      .contents.asien .meals .items .item {
        margin: 0; }
        .contents.asien .meals .items .item h3 {
          font-size: 3.3rem;
          line-height: 1; }
        .contents.asien .meals .items .item .price {
          font-size: 3rem;
          line-height: 1; }
        .contents.asien .meals .items .item .details {
          font-size: 2rem;
          margin-top: 0.2rem;
          line-height: 1.2; }

.contents.asien.asien-1-default .meals .items .item .details {
  font-size: 2.5rem; }

.contents.asien.asien-1-dagens .meals .items .item .details {
  font-size: 2.5rem; }

.contents.asien.asien-2-dagens .meals {
  gap: 1.5rem; }
  .contents.asien.asien-2-dagens .meals .items .item .details {
    font-size: 1.5rem; }

.contents.asien.asien-2-default .meals {
  gap: 1.5rem; }
  .contents.asien.asien-2-default .meals .items .item .details {
    font-size: 1.5rem; }

.contents.asien-3-dagens {
  grid-template-columns: 1.2fr 0.8fr;
  grid-gap: 3rem;
  padding: 1.2rem 2rem; }
  .contents.asien-3-dagens .items {
    justify-content: center; }

.meals {
  display: flex;
  flex-direction: column; }
  .meals h2 {
    text-transform: uppercase;
    text-align: center;
    color: red; }
  .meals .items {
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
    .meals .items .item {
      margin: 0.8rem 0;
      display: grid;
      grid-template-columns: max-content 1fr max-content;
      grid-template-areas: "title dots price" "details details details"; }
    .meals .items h3 {
      text-transform: uppercase;
      grid-area: title; }
    .meals .items .dots {
      grid-area: dots;
      display: flex;
      align-items: center;
      flex-direction: row;
      margin: 0 0.8rem;
      padding-bottom: 0; }
      .meals .items .dots hr {
        flex-grow: 1;
        height: 1px;
        border: 0;
        border-bottom: 12px dotted red; }
    .meals .items .price {
      grid-area: price;
      font-size: 1.2rem; }
    .meals .items .details {
      grid-area: details;
      margin-top: 0.2rem; }

.not-todays {
  background-image: url("/wok.jpg");
  background-size: cover;
  border-left: 5px solid white; }

.todays {
  border: 15px double red;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem; }
  .todays .items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .todays .items hr {
      border: 0;
      border-bottom: 15px double red;
      margin: 1.5rem auto;
      width: 200px;
      text-align: center; }
    .todays .items .item h3 {
      text-transform: uppercase; }
    .todays .items .item .details {
      margin-top: 0.3rem; }
  .todays .price {
    font-size: 3rem; }
