@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;400;500;600;700;800;900&display=swap');
* {
    font-family: 'Noto Sans Thai', sans-serif;
}

html,
body {
    height: 100%;
}

.background {
    position: relative;
}

.background::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: blur(30px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
    background-attachment: fixed;
    background-image: url(../images/bg.jpg);
}

.nav-link:hover {
    color: #fff !important;
}

.btn-his {
    background-color: #006838 !important;
    color: #fff !important;
}

.btn-his:hover,
.btn-his:focus,
.btn-his:active,
.btn-his.btn-default {
    background-color: #045630 !important;
    color: #ddd;
}