* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}
    html,body{
		margin: 0;
padding: 0;

  -webkit-background-size: cover;
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
  }
body{
background: url(images/bgmain.png) no-repeat center center fixed; 
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.style17 {
	font-family: Arial;
	font-style: normal;
	font-size: 14px;
    color:black;
}
	.horizontal-scroll {
  overflow: hidden;
  overflow-x: auto;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;


}

.my-table {
	  margin: 0;
	cellspacing:0;
  padding: 0;

}

.button {
    background-color: #ff9cd8; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 8px;
  }
  
  .button1 {
    background-color: white; 
    color: black; 
    border: 2px solid #ff9cd8;
  }
  
  .button1:hover {
    background-color: #ff9cd8;
    color: white;
  }

  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.2s;
  }
  .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.2s;
  }
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }