@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300&family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300&family=Roboto:wght@500&display=swap");
.learn-more {
  display: inline-block;
  background-color: #a81c1c;
  border-radius: 10%;
  padding: 10px;
  margin: 20px auto;
  transition: all 1s;
  font-weight: bold;
}
.learn-more:hover {
  background-color: #fff;
  color: #a81c1c;
}

.line {
  display: block;
  width: 200px;
  height: 5px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #a81c1c;
  margin-bottom: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  position: relative;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.5s;
}

@media (max-width: 700px) {
  .learn-more:hover {
    background-color: #a81c1c;
    color: rgba(255, 255, 255, 0.8274509804);
  }

  .line {
    width: 100px;
  }
}
footer {
  margin-top: 20px;
  background-color: #12243b;
  color: rgba(255, 255, 255, 0.8274509804);
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
  height: 60px;
  line-height: 60px;
}