@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,200;0,300;1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@100;200;300;400&display=swap');
* {
    font-family: 'Prompt', sans-serif;
    margin: 0;
    padding: 0;
}
.container h2,p{
    font-family: 'Sarabun', sans-serif;
}
nav {
    background: rgb(1,36,78);
    background: linear-gradient(121deg, rgba(1,36,78,1) 31%, rgba(61,78,126,1) 100%);
}
#logo {
    width: 170px;
    margin-left: 50px;
    transition: all 0.5s ease-in-out;
}
footer{
    background: rgb(1,17,37);
    background: linear-gradient(121deg, rgba(1,17,37,1) 31%, rgba(32,41,66,1) 100%);
}
#para-img {
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 10vh;
    background: url('../img/banner/kkuoldbanner.jpg') center center fixed no-repeat;
    background-size: cover;
    /*
    กำหนัดรูปพื้นหลังและตำแหน่งเป็นcenter ไม่แสดงภาพส้ำ และfixed positionเพื่อให้ภาพไม่เลื่อน
    ตามwebsite
    */
}