@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    background-color: rgba(178,205,84);
    /* background-image: linear-gradient(to bottom, rgba(255, 255, 255) 2%, rgba(178,205,84)); */
    font-family: "Gowun Batang", serif;
    color: rgb(70, 70, 70);
  }


.back-to-home {
  position: fixed;
  top: 10px;
  left: 15px;
  text-align: center;
  text-decoration: none;
  color: rgb(70, 70, 70);
  font-size: 1.3em;
}

.back-to-home:hover {
  text-decoration: underline dashed;
  text-underline-offset: 4px;
}
  
  
.about {
  position: fixed;
  height: 50px;
  bottom:10px;
  left: 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center; 
  justify-content: center; 
  color: rgb(70, 70, 70);
  font-size: 1.3em;
}

.about:hover {
  text-decoration: underline dashed;
  text-underline-offset: 4px;
}


  /* .next {
  position: fixed;
  height: 20px;
  top: 10px;
  right: 15px;
  color: rgb(70, 70, 70);
  border-radius: 0px;
  text-align: center;
  text-decoration: none;
  font-size: 1.3em;
  }

  .next:hover {
  text-decoration: underline dashed;
  text-underline-offset: 4px;
} */

  
  
.card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.2s, opacity 0.2s;
  z-index: 1000;
}

.card:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  color: rgb(70, 70, 70);
  font-family:"Gowun Batang", serif;
  font-size: 1.2em;
}

.card-content {
  background: rgb(255, 255, 255);
  padding: 1.5em;
  width: 500px;
  position: relative;
  text-align: left;
  /* border-radius: 8px; */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.card-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  text-decoration: none;
  color: #e0e0e0;
  transition: 0.3s;
}

.card-close:hover {
  color: #333;
}

  .page {
  display: flex;
  align-items: center; 
  height: 100vh;
}

.left-column {
  width: 250px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
}

.left-column h2 {
  margin-bottom: 16px;
  font-size: 1.5em;
}

.left-column .hand1,
.left-column .hand2 {
  height: 150px;
  margin-bottom: 12px;
}

.left-column p {
  font-size: 1.1em;
  line-height: 1.2;
}

