body {
  margin: 0;
  padding: 0;
  background: url(img/dot.svg) no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000000;
}

.container {
  display: flex;
  justify-content: center;
}

.profile {
  width: 118px;
  height: 118px;
  background-image: url(img/Logo.jpeg);
  background-size: cover;
  background-position: center;
  position: relative;
  top: 5px;
  left: calc(50% - 59px);
  border-radius: 50%;
}

.content {
  margin-top: 37px;
  padding-top: 10px;
  width: 330px;
  height: 200px;

  background-color: white;
  border-radius: 21px;
}

.text {
  text-align: center;
  margin: 0 auto;
  color: black;
}

.text a {
  text-decoration: none;
}

.text h2 {
  padding-top: 20px;
  margin: 0 auto;
  font-family: "Misans Lao", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: black;
  font-size: 24px;
}

.text p {
  margin: 0 auto;
  font-family: "Sansation", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: black;
  font-size: 16px;
}

.container-glr {
  padding-top: 10px;
}

.gelery {
  justify-content: center;
}

.gelery img {
  margin: 3px;
  width: 153px;
  height: auto;
  border-radius: 13px;
}

.back {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.button {
  padding-top: 25px;
  display: block;
  transition: tranform 0.9 ease;
  text-align: center;
  margin: 0 auto;
}

.btn {
  background: linear-gradient(to right, #80fff9, #6554ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 15px 60px;
  font-size: 25px;
  text-decoration: none;
  border-radius: 40px;
  font-family: "Misans Lao", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-style: normal;
}

.btn i {
  color: #ffffff;
}

/* 
-----------------> @media screen  ----------------->*/

@media only screen and (max-width: 400px) {
  .container {
    display: flex;
    justify-content: center;
  }

  .profile {
    width: 118px;
    height: 118px;
    background-image: url(img/Logo.png);
    background-size: cover;
    background-position: center;
    position: relative;
    top: 5px;
    left: calc(50% - 59px);
    border-radius: 50%;
  }

  .content {
    margin-top: 37px;
    padding-top: 35px;
    width: 330px;
    height: 235px;
    background-color: white;
    border-radius: 21px;
  }

  .text {
    text-align: center;
    margin: 0 auto;
    color: black;
  }

  .text a {
    text-decoration: none;
    font-size: 1000px;
  }

  .text h2 {
    padding-top: 20px;
    margin: 0 auto;
    font-family: "Misans Lao", sans-serif;
    font-style: normal;
    font-weight: 900;
    color: black;
    font-size: 24px;
  }

  .text p {
    margin: 0 auto;
    font-family: "Sansation", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: black;
    font-size: 16px;
  }

  .container-glr {
    padding-top: 10px;
  }

  .gelery {
    justify-content: center;
  }

  .gelery img {
    margin: 3px;
    width: 153px;
    height: auto;
    border-radius: 13px;
  }

  .back {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }

  .button {
    padding-top: 25px;
    display: block;
    transition: tranform 0.9 ease;
    text-align: center;
    margin: 0 auto;
  }

  .btn {
    background: linear-gradient(to right, #ffffff, #676363);
    color: #484242;
    font-size: 30px;
    text-decoration: none;
    border-radius: 40px;
    font-family: "Misans Lao", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-style: normal;
  }

  .btn i {
    color: #ffffff;
  }
}
.font {
    font-family: "Noto Sans Lao";
}

@media (max-width: 768px) {
    .profile {
        width: 150px; /* Adjust width for smaller screens */
        height: 150px; /* Adjust height for smaller screens */
        border-radius: 50%;
        left: calc(50% - 76px);
    }
}

/* ปุ่มเล็กๆ ด้านขวามือ */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  color: white;
  border: none;
  border-radius: 50%; 
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.floating-button:hover {
  background-color: #b2b2b2;
}

.floating-button img {
  width: 30px;
  height: 30px;
}