/* ? font poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ? font khmer  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Khmer:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  font-family: 'Francois One', 'Bayon';
}

body {

  text-align: center;
  padding: 40px 0;
  background: #EBF0F5;

  font-family: 'Francois One', 'Bayon';
}

h1 {
  color: #88B04B;
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 10px;
  font-family: 'Francois One', 'Bayon';
}

p {
  color: #404F5E;
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  font-size: 20px;
  margin: 0;
  font-family: 'Francois One', 'Bayon';
}

i {
  color: #9ABC66;
  font-size: 100px;
  line-height: 200px;
  margin-left: -15px;
}

.card {
  background: white;
  padding: 60px;
  border-radius: 4px;
  box-shadow: 0 2px 3px #C8D0D8;
  display: inline-block;
  margin: 0 auto;
}

.btn {
  font-weight: bold;
  border: 2px solid dodgerblue;
  cursor: pointer;
  padding: 5px 20px;
  color: white;



  border-radius: 20px;
  transition: all 0.4s;
  background-color: dodgerblue;
}

.btn:hover {
  border: 2px solid dodgerblue;
  background: transparent;
  color: dodgerblue;
}