

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 20px;
    scroll-behavior: smooth;
    font-family: "Kanit",sans-serif;

    
}

@media only screen and (width > 500px ){
    * {
        
        font-size: 30px;
    }
}

@media only screen and (width > 800px){
    * {
        
        font-size: 40px;
    }
}

@media only screen and (width > 1200px){
    * {
        
        font-size: 50px;
    }
}

a {
    color: black;
    
    cursor: pointer;
}

body {
    overflow-x: hidden;
   
}

h2{
    font-size: 1.3rem;
    font-weight: 100;
}

p, h1, h2, h3, h4 {
    pointer-events: none;
}