@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');

* {
    font-family: 'Kanit', sans-serif;
}

body {
    margin: 0px;
}

.text-center {
    text-align: center;
}


.header {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: whitesmoke;
    color: #596062;
    height: 50px;
    display: flex;
    align-items: center;
}

.header-left {
    flex: 1;
    padding: 10px;
}

.header-right {
    flex: 2;
    font-weight: 600;
    text-align: end;
    padding: 10px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop ul {
    display: flex;
}

.desktop ul>li {
    margin-right: 20px;
}

.mobile,
.mobile-menu {
    display: none;
}


.navbar {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;

    height: 100px;
    align-items: center;
    text-align: center;
}

.qr-code {
    text-align: center;
    margin-top: 50px;
}

.container {
    height: calc(100vh - 100px);
    background-color: white;
    padding: 10px;
    color: #596062;
    margin: 0px;
}

a {
    color: #596062;
}

.footer-fixed {
    width: 100%;
    font-size: 12px;
    position: fixed;
    bottom: 10px;
}

.button {
    width: 98%;
    height: 50px;

}

/* ชี้เม้าส์บนปุ่ม */
.button:hover {
    cursor: pointer;
    height: 49px;
    width: 97%;
}

@media screen and (max-width:640px) {

    /* menu */
    .desktop {
        display: none;
    }


    /* navbar */
    .navbar {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }


}