@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Bold.ttf') format('truetype');
  font-weight: bold;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Light.ttf') format('truetype');
  font-weight: 300;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Nunito';
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: #FCFCFC;
}

.title {
  font-size: 28px;
  font-weight: bold;
  line-height: 38px;
  text-align: center;
}

.title-box {
  padding-top: 40px;
  padding-bottom: 15px;
}

.subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}

.subtitle-box {
  padding: 10px 0;
  width: 100%;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.container .menu-container {
  max-width: 900px;
  width: 100%;
  padding-top: 25px;
}

.container .menu-container .menu-item {
  width: 100%;
  height: 100px;
  background: #FFF; 
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.10); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 48px;
  margin-bottom: 10px;
}

.container .menu-container .menu-item .desc-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.container .menu-container .menu-item .desc-box .title {
  display: block;
  font-size: 20px; 
  font-weight: bold;
  line-height: 21px; 
  margin-bottom: 10px;
  text-align: left;
}

.container .menu-container .menu-item .desc-box .desc {
  font-size: 18px; 
  font-weight: 400;
  line-height: 19px; 
  text-align: left;
}

.container .menu-container .menu-item .price-volume-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 18px; 
  font-weight: 500;
  line-height: 19px; 
  white-space: nowrap;
}

@media (max-width: 700px) { 
  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 18px;
  }

  .container .menu-container .menu-item {
    flex-direction: column;
    height: 170px;
    padding: 23px;
  }

  .container .menu-container .menu-item .price-volume-box {
    width: 100%;
  }

  .container .menu-container .menu-item .desc-box {
    width: 100%;
    margin-bottom: 20px;
  }
}