@font-face {
  font-family: Kanit-Regular;
  src: url(../../assets/fonts/Kanit-Regular.ttf) format("truetype");
}

* {
  font-family: Kanit-Regular, sans-serif;
}
* {
  font-size: 18px;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.content {
  flex: 1;
}

footer {
  background-color: #f8f9fa;
  padding: 10px;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flash {
  animation: flash 0.5s infinite;
}
