html, body {
    margin: 0;
    padding: 0;
    background-image: url("/assets/bg/blueSky.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    background-attachment: fixed;
}

.returnLink {
    width: fit-content;
    position: relative;
    z-index: 10;
    padding: 10px;
}

.returnLink a {
    color: #ffffff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.pageContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes content to top & bottom */
    align-items: center;
    width: 100%;
    min-height: 100vh;   /* ensures it always matches viewport height */
}


h1 {
    color: #FF0;
    text-align: center;
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: #F00;
    font-family: "NSimSun";
    font-size: 240px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h2 {
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: #FFF;
    font-family: "Star 4 Radar";
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    background: linear-gradient(180deg, #F36D30 25.74%, #FFD13D 77.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin: 0;
    padding: 20px;
}

.chinese {
    width: 100%;
    display: flex;
    justify-content: space-between;  /* left & right edges */
    align-items: center;
}

.chinese h1:first-child {
    margin-left: 50px;
}

.chinese h1:last-child {
    margin-right: 50px;
}


/*------------------------------------------------------------------------------------------ */
/*Dinner section*/
/*------------------------------------------------------------------------------------------ */

.mainContainer {
    position: absolute;
    bottom: 0;        /* stick to bottom */
    left: 50%;        /* center horizontally */
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}


.title {
    padding-top: 30px;
    text-align: center;
}

.dinnerWare {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 0px;
    margin-top: auto;
}

.fork, .knife {
    width: 300px;   /* smaller utensils */
    height: auto;
}

.plate {
    width: 900px;   /* larger plate */
    height: auto;
}

.plateMenu {
    position: relative;
    display: inline-block;
}

.recipeLink {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* center inside plate */
    text-align: center;
    cursor: pointer;
}

.recipeLink a {
    font-size: 38px;       /* adjust as needed */
    color: #ffffff;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    -webkit-text-stroke-width: 1px;
    font-weight: bold;
    font-family: "StarJR Large Compressed", monospace;
    text-decoration: none; /* optional */
}


