/* styles.css */
body {
  font-family: 'Roboto', sans-serif;
  background: #673AB7; /* เปลี่ยนสีพื้นหลังเป็นสีม่วงเข้ม */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  color: #fff; /* เปลี่ยนสีตัวอักษรเป็นขาว */
  text-align: center;
}

header {
  padding: 20px;
  margin-bottom: 20px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #9C27B0, #673AB7); /* เปลี่ยนสีพื้นหลังของปุ่ม */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(135deg, #7B1FA2, #512DA8); /* เปลี่ยนสีพื้นหลังของปุ่มเมื่อชี้ไป */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn:active {
  background: linear-gradient(135deg, #6A1B9A, #4527A0); /* เปลี่ยนสีพื้นหลังของปุ่มเมื่อกด */
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media (max-width: 600px) {
  .btn {
    width: 80%;
  }
}