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

html {
  font-size: 30px; }

:root {
  --color-green: #367b62;
  --color-orange: #fbb807; }

body {
  width: 1920px;
  height: 1080px;
  padding: 4rem 8rem;
  background-image: url("/ds/amerika_bg_2.jpg");
  background-repeat: no-repeat;
  background-size: 1920px 1080px;
  font-family: system-ui, sans-serif; }

main {
  width: 100%;
  height: 100%;
  border: 10px solid var(--color-orange);
  background: var(--color-green);
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative; }
  main .header {
    color: var(--color-orange);
    font-size: 130px;
    text-transform: uppercase;
    font-weight: bold; }
  main .dish-name {
    font-size: 70px;
    font-weight: 600;
    margin-top: 60px;
    text-transform: capitalize; }
  main .dish-details {
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 20px; }
  main .price {
    font-size: 170px;
    font-weight: bold;
    color: var(--color-orange); }
  main .summary {
    margin-top: 20px;
    font-size: 50px; }
  main .qr-section {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right; }
    main .qr-section .qr-text {
      font-size: 24px;
      margin-bottom: 10px; }
