@font-face {
    font-family: myFirstFont;
    src: url("../font/font noto.ttf");
}
body {
    font-family: myFirstFont;
}

/* ส่วน scrollbar */
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.00);
}
::-webkit-scrollbar-thumb {
background: rgba(47, 71, 147, 0.80);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(47, 71, 147, 0.80);
}