@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kanit: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&family=Noto+Sans+Bhaiksuki&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..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&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  background-color: #404a65;
  width: 100%;
  height: 100vh;
  justify-content: center;
  font-family: 'kanit', sans-serif;
}
.container {
  padding: 2rem;
  height: 100vh;
  text-align: center;
}
.container header {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
header h1 {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 0px #35383f;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #35383f;
}
header p {
  text-shadow: 2px 2px 0px #35383f;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #35383f;
  font-size: 1.8rem;
  font-weight: 700;
}
.image {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 3rem;
}
.title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 2rem;
}
.img {
  cursor: pointer;
}
.btn {
  background: #0a0a23;

  border-radius: 10px;
  box-shadow: inset 4px 8px 14px 12px #23649b;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  width: 40%;
  height: 7%;
}

.flip {
  animation: flip 1.2s ease;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
