html,
body{
    margin:0;
    min-height:100%;
    font-family:"Microsoft JhengHei", Arial, sans-serif;
    background:#080808;
    color:#fff;
}

*{
    box-sizing:border-box;
}

.site-footer{
    padding:22px;
    text-align:center;
    color:#aaa;
    background:#050505;
    border-top:1px solid rgba(255,255,255,.08);
}

.button{
    display:flex;
    justify-content:center;
    align-items:center;
    width:170px;
    height:52px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    font-size:17px;
    color:#1b1000;
    background:linear-gradient(135deg,#d9793d,#ffb36b);
    transition:.25s;
}

.button.secondary{
    background:linear-gradient(135deg,#d9793d,#ffb36b);
    color:#1b1000;
    border:none;
}

.button:hover,
.button.secondary:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(255,179,107,.35);
}

