@font-face {
    font-family: 'hR';
    src: url('/asset/HelveticaRounded-Bold.woff') format('woff');
}

@font-face {
    font-family: 'mL';
    src: url('/asset/Moderat-Trial-Light.woff') format('woff');
}

body,
html {
    color: #545454;
    font-family: 'mL';
    background-color: #EFEFEF;
    height: 100%;
    margin: 0;
    font-size: 10px;
    font-weight: 100;
}

p {
    font-size: 1.3em;
    text-align: left;
    color: #484848;
    /* text-shadow: 1px 1px 0 #ffbbec, -1px 1px 0 #ffbbec, 1px -1px 0 #ffbbec, -1px -1px 0 #ffbbec, 1px 0px 0 #ffbbec, 0px 1px 0 #ffbbec, -1px 0px 0 #ffbbec, 0px -1px 0 #ffbbec; */
}

.upnav {
    z-index: 10;
    position: fixed;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.mid {
    font-family: hR;
    width: 90%;
    z-index: 10;
    font-size: 2.5em;
    text-align: center;
    color: #717171;
    text-shadow: 1px 1px 0 #ffbbec, -1px 1px 0 #ffbbec, 1px -1px 0 #ffbbec, -1px -1px 0 #ffbbec, 1px 0px 0 #ffbbec, 0px 1px 0 #ffbbec, -1px 0px 0 #ffbbec, 0px -1px 0 #ffbbec;
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.today {
    background-color: #c5ff73;
    font-size: 2.3em;
    width: 6em;
    height: 1em;
    padding: 0.5em;
    text-align: center;
    /* box-shadow: 0.2px 0.2px 12px rgba(41, 41, 41, 0.25); */
    border-radius: 40px;
    transition: box-shadow 0.3s ease-in-out;
    /* 使文本垂直居中 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.before {
    background-color: #FF692A;
    font-size: 2.5em;
    width: 7em;
    height: 1em;
    padding: 0.5em;
    text-align: center;
    box-shadow: 0.5px 0.5px 1px rgba(41, 41, 41, 0.25);
    border-radius: 40px;
    transition: box-shadow 0.3s ease-in-out;
    /* 使文本垂直居中 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
}


/* .before:hover {
    box-shadow: 0.5px 0.5px 10px rgba(41, 41, 41, 0.25);
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
    text-decoration: underline;
} */

.downnav {
    z-index: 10;
    width: 97%;
    height: 2em;
    text-align: center;
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 10px;
    padding: 10px;
    line-height: 1.4em;
}

.next {
    width: 20px;
    height: 20px;
    background: #E0E0E0;
    box-shadow: inset 2px -3px 2px -1px rgba(110, 110, 110, 0.25);
    border-radius: 50%;
}

.next:hover {
    cursor: pointer;
    transform: scale(1.1);
    background: #FFDB5C;
    box-shadow: inset -4px -5px 4px 0px rgba(32, 126, 63, 0.25);
}