body {
  font-family: "Kanit";
}
nav.navbar {
  background-color: #ffffff !important;
}
nav.navbar .logo-apmf {
  width: 100%;
  max-width: 360px;
}

nav .collapse .navbar-nav .nav-item .nav-link {
  font-weight: 500;
}

.container-page {
  width: 100%;
  min-height: 110vh;
  background-color: #001642;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center bottom;
  text-align: center;
}

.container-page .image-text-lg {
  width: 100%;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.container-page .image-text-sm {
  display: none;
}
.container-page .btn-register {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.container-page .btn-register img {
  width: 100%;
  max-width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.container-page .btn-register:hover img {
  transform: scale(1.05);
}

footer {
  background-image: url("../images/bg-footer.jpg");
  background-size: cover;
  background-position: center center;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .container-page {
    min-height: calc(100vh - 136px);
  }
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
  .container-page {
    min-height: calc(100vh - 136px);
    background-image: url("../images/bg-mobile.jpg");
  }
  
  .container-page .btn-register img {
    max-width: 280px;
  }
}

@media screen and (max-width: 766px) {
  .container-page {
    min-height: calc(100vh - 72px);
    background-image: url("../images/bg-mobile.jpg");
  }
  nav.navbar .logo-apmf {
    width: 100%;
    max-width: 150px;
  }
  .container-page .image-text-lg {
    display: none;
  }
  .container-page .image-text-sm {
    display: inline-flex;
    width: 95%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .container-page .btn-register img {
    max-width: 250px;
  }
}
