*{
    font-family: 'Noto Sans Thai', sans-serif;
}
html{
    background-color: #FBF9E8;
}
body{
    margin: 0;
    padding: 0;
}
header{
    background-color: #FBF9E8;
}
.header-container{
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.header-logo{
    align-items: end;
    justify-content: center;
    display: flex;
    width: 25%;
    position: relative;
}
.header-logo img{
    width: 65px;
}
.header-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.hd-nav-container{
    list-style: none;
    margin: 0;
    padding: 0;
}
.hd-nav-item{
    font-size: .8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 0 20px;
}
.header-cta{
    display: flex;
    align-items: center;
    width: 25%;
}
.hd-nav-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hd-regis-btn{
    background-color: #FFD256;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
    border-radius: 10px;
    margin-right: 20px;
    cursor: pointer;
}
.hd-login-btn{
    background-color: #b5ddaf;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
    border-radius: 10px;
    margin-right: 20px;
    cursor: pointer;
}
.header-logo-title{
    font-weight: bold;
    font-size: 40px;
    color: #ffa900;
    margin-left: 10px;
}
.header-logo-title h1{
    margin: 0;
}
.header-sub-title{
    font-weight: 100;
    font-size: 13px;
    color: gray;
    margin-bottom: 5px;
}
.home-img-intro{
    width: 100%;
}
.red-text{
    color: red;
}
.changelog {
    display: none;
}
.header-logo .header-version-info:hover + .header-logo .changelog{
    display: block;
}
.changelog p{
    line-height: 1;
    font-size: 9px;
    padding: 0;
    margin: 7px 0px;
    padding: 5px;
    color: white;
    border-radius: 3px;
}
.changelog-new{
    background: #56c632;
}
.changelog-misc{
    background: #32b2c6;
}
.changelog-fix{
    background: #c68132;
}
.changelog{
    background: white;
    position: absolute;
    z-index: 10;
    height: 100px;
    overflow: scroll;
    width: 310px;
    top: 70px;
    right: -140px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.changelog h2{
    margin: 0;
    padding: 0;
    font-size: 15px;
}
.changelog h3{
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 0;
}
@media (max-width: 1025px){
    .header-nav{
        display: none;
    }
    .header-logo {
        justify-content: center;
    }
    .header-container{
        justify-content: space-between;
    }
    .header-cta {
        display: flex;
        align-items: center;
        justify-content: right;
        width: 100%;
    }    
    .header-logo{
        width: 100%;
    }
    
}

@media (max-width: 550px){
    .header-logo {
        justify-content: center;
    }
    .hd-regis-btn,.hd-login-btn {
        margin-right: 10px;
        font-size: 11px;
    }
    .header-logo-title {
        font-weight: bold;
        font-size: 20px;
    }
}
