body {
    background: #a2b884; /* #AEC194 */
    color: #fff;
    font-family: 'Noto Sans TC', 'Open Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    }

.h1{
    margin: 40px;
    font-size: 2.8rem;
    text-align: center;
    font-family: 'Noto Serif', serif;
    font-style: italic;
}

.bold{
    font-weight: 600;
}

.h3{
    font-size: 1.35rem;
}

.mobile-changeline{
    display: inline-block;
    margin-bottom: 0.35rem;
}

.order-details{
    text-align: center;
    margin-bottom: 2rem;
}

.underline{
    text-decoration: underline;
}

.link-area{
    margin-bottom: 14px;
}

.links {
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid white;
    border-width: 2px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
}

.links:hover {
    background-color: white;
    color: #AEC194;
    font-weight: 700;
}

.links:focus {
    background-color: white;
    color: #AEC194;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: white;
}

footer {
    margin-top: 6rem;
    text-align: center;
}

/** LIGHTBOX MARKUP **/

.lightbox {
    /* Default to hidden */
    display: none;
  
    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    /* A bit of padding around image */
    padding: 1em;
  
    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* Unhide the lightbox when it's the target */
  .lightbox:target {
    display: block;
  }
  
  .lightbox span {
    /* Full width and height */
    display: block;
    width: 100%;
    height: 100%;
  
    /* Size and position background image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  img {
    width: 1.35rem;
    height: 1.35rem;
    position: relative;
    top: 0.2rem;
  }

@media screen and (max-width: 500px){
    .h1{
        font-size: 2rem;
    }
    .h3{
        text-align: center;
    }
    .order-details{
        text-align: left;
        margin-bottom: 2rem;
        margin-left: 0.6rem;
    }

}
