@import url('https://fonts.googleapis.com/css2?family=Georama:ital,wght@1,800&family=Noto+Serif+KR&display=swap');

div {
  padding: 0;
  margin: 0;
}

body {
  transition: background-color 1s ;
  background-color: rgb(0 0 0 / 3%);
}

#main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.box {
  transition: background-color 1s ;
  background-color: #fff;
  width: 300px;
  box-shadow: rgb(0 0 0 / 5%) 0px 0px 36px;
  border-radius: 10px;
}

#mealBox {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  margin-top: 30px;
  padding: 28px 30px;
  padding: 28px 30px 20px 30px;
}

#mealNav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 30px;
  font-weight: bolder;
  margin-bottom: 30px;
}

#mealNav > #date {
  font-family: 'Georama', sans-serif;
  font-weight: 800;
  font-style: italic;
}

#mealContent {
  display: flex;
  flex-direction: column;
}

.meal {
  margin: 10px 0;
  font-family: 'Noto Serif KR', serif;
  font-weight: 400;
}

.meal > .title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

#controls {
  margin-top: 20px;
  margin-right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}