@import url("https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&family=Kanit:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600&family=Roboto+Mono:wght@200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;600;700&family=Kanit:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aleo:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Calistoga&display=swap");

:root {
  --nav-font_1: "Agdasima";
  --nav-font_2: "Roboto Mono";
  --nav-font_3: "Bitter";
  --nav-font_4: "Aleo";
  --nav-font_5: "Montserrat";
  --nav-font_6: "Calistoga";
}

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


  /*---------------------------------------------*/
 /*             PAGE TRANSITION                 */
/*---------------------------------------------*/
body {
  color: #fff;
  animation: transitionIn 0.75s;
}

@keyframes transitionIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  /*---------------------------------------------*/
 /*        END OF PAGE TRANSITION               */
/*---------------------------------------------*/

/*---------------------------------------------*/
/*              B A N N E R                   */
/*-------------------------------------------*/
.container {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./image/bg_color.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 10px;
  padding-left: 8%;
  padding-right: 8%;
}
  /*---------------------------------------------*/
 /*         END OF  B A N N E R                 */
/*---------------------------------------------*/

  /*---------------------------------------------*/
 /*                  L O G O                    */
/*---------------------------------------------*/
.logo {
  display: flex;
  flex-direction: row;
  gap: 5px ;
}
.logo img {
  width: 1.8rem;
  height: auto;
}
.logo a {
  font-size: 1.5rem;
  text-decoration: none;
  font-family: var(--nav-font_1);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}
span {
  color: #57bb8a;
  font-family: var(--nav-main-font);
  font-weight: 600;
}
  /*---------------------------------------------*/
 /*             E N D  O F  L O G O             */
/*---------------------------------------------*/


  /*---------------------------------------------*/
 /*               START OF NAVBAR               */
/*---------------------------------------------*/
nav {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 15px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.5rem, 0.075rem + 5.2vw, 1.5rem);
  font-weight: 500;
  font-family: var(--nav-font_1);
  padding: 5px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
nav ul li a:hover {
  background: #57bb8a;
  color: black;
}
  /*---------------------------------------------*/
 /*               END OF NAVBAR                 */
/*---------------------------------------------*/


  /*---------------------------------------------*/
 /*               START OF FOOTER               */
/*---------------------------------------------*/
.footer {
  padding: 10px 0;
  background-color: #348e62ca;
  margin-bottom: -5px;
  margin-top: -5px;
}
.footer ul {
  margin-top: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
  gap: 15px;
}
.footer ul a {
  color: black;
  text-decoration: none;
  opacity: 0.8;
  font-family: var(--nav-font_5);
  font-weight: 500;
}

.footer ul li {
  display: inline-block;
  padding: 0 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #0c0c0c;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--nav-font_1);
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  font-size: 1.1rem;
  color: rgb(4, 4, 4);
  border-bottom: 3px solid #fefefe;
}
.footer .copyright {
  margin-top: 2px;
  text-align: center;
  font-size: 0.8rem;
  color: #000000;
  font-family: var(--nav-font_2);
  margin-bottom: -5px;
  word-spacing: 2px;
}
  /*---------------------------------------------*/
 /*               END OF FOOTER                 */
/*---------------------------------------------*/



.btn {
  background: #000;
  border-radius: 6px;
  padding: 9px 25px;
  text-decoration: none;
  transition: 0.5s;
  font-size: 18px;
}

.content {
  margin-top: 5%;
  max-width: 500px;
  float: right;
  text-align: center;
  line-height: 45px;
  justify-content: center;
  margin-right: 50px;
}
.content h1 {
  font-size: clamp(1.5rem, 0.075rem + 5.2vw, 4rem);
  color: #3e9f70;
  font-family: var(--nav-font_3);
  line-height: normal;
}
.content h3 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #3e9f70;
  font-family: var(--nav-font_4);
  line-height: 1rem;
}
.content p {
  font-size: clamp(0.5rem, 0.75rem + 4vw, 1.1rem);
  font-family: var(--nav-font_3);
  margin-top: 2rem;
  line-height: 25px;
  text-align: justify;
  color: #3e9f70;
  margin-bottom: 20px;
  word-spacing: 1px;
}
.content img {
  width: 250px;
  height: auto;
}
a {
  color: #ffffff;
}
.link {
  margin-top: 30px;
}
.btns {
  margin-top: 0;
  margin-bottom: 5px;
}
.btns button {
  height: 35px;
  width: 90px;
  border-radius: 5px;
  border: none;
  margin: 0 10px;
  border: 2px solid #57bb8a;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--nav-font_1);
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.btns button:first-child {
  color: #57bb8a;
  background: none;
  font-family: var(--nav-font_1);
}
.btns button:first-child:hover {
  background: #57bb8a;
  color: black;
}



  /*---------------------------------------------*/
 /*         START OF MEDIA QUERIES              */
/*---------------------------------------------*/
@media screen
    and (max-device-width: 640px) {
      .container {
        width: 100vw;
        height: 100vh;
        padding-top: 10px;
        padding-left: 12%;
        padding-right: 2%;
      }
      nav {
        width: 100%;
      }
      nav ul li {
        margin: 1px 1px;
      }
      nav ul li a {
        font-size: clamp(0.5rem, 0.075rem + 5.2vw, 0.8rem);
        padding: 10px 10px;
      }
      .logo {
        gap: 2px ;
      }
      nav .logo img {
        width: 1rem;
        height: auto;
      }
      .logo a {
        font-size: 1rem;
        margin-right: 5px;
        word-spacing: 1px;
      }
      .content img {
        width: 120px;
        height: auto;
        margin-top: 40px;
      }
      .content h1 {
        font-size: 40px;
        line-height: normal;
      }
      .content h3 {
        font-size: 18px;
        color: #57bb8a;
        font-family: var(--nav-font_4);
        line-height: 1rem;
      }
      .content p {
        font-size: clamp(0.5rem, 0.75rem + 4vw, 0.7rem);
        margin-top: 1rem;
        line-height: 16px;
        margin-bottom: 10px;
        word-spacing: 1px;
      }
      .btns button {
        height: 25px;
        width: 85px;
        border-radius: 5px;
        font-size: 16px;
      }
      .footer ul li a {
        font-size: 0.8rem;
      }
      .footer .copyright {
        margin-top: 2px;
        font-size: 0.6rem;
      }
    }
@media (min-width:768px) {
  nav ul li a {
    font-size: clamp(0.5rem, 0.075rem + 5.2vw, 1.2rem);
  }
}
@media (min-width:1024px) {
  nav ul li a {
    font-size: clamp(0.5rem, 0.075rem + 5.2vw, 1.3rem);
  }
}
@media (min-width:1280px) {
  nav ul li a {
    font-size: clamp(0.5rem, 0.075rem + 5.2vw, 1.5rem);
  }
}
  /*---------------------------------------------*/
 /*         END OF MEDIA QUERIES                */
/*---------------------------------------------*/


