/* General Styles */
body {
  font-family: "Kanit", sans-serif;
  margin: 0;
  padding: 0;
  color: #653728;
}
body::selection {
  background-color: #653728;
  color:#ece5d2;
}
a{
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.link{
  color: #653728;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #653728;
    color: #ece5d2;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  .btn:hover{
    background-color: #965a46;
  }

/* Section */
section {
  padding: 40px 5%;
  text-align: center;
}