@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');

body {
  font-family: "Gowun Batang", serif;
  text-align: center;
}

#blocks-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}

.block {
  width: 300px;
  padding: 35px;
  background-color: #fff; 
  border: 1px solid rgb(70, 70, 70); 
  border-radius: 9px; 

}


html, body {    
  background-color: #fff;
  color: rgb(91, 151, 0);
  font-size: 1em;
}

h1 {
  font-family: "Gowun Batang", serif;
}

.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;
}

.add-button {
  position: fixed;
  height: 20px;
  bottom: 40px;
  right: 40px;
  color: rgb(70, 70, 70);
  border-radius: 0px;
  text-align: center;
  text-decoration: none;
  font-size: 1.3em;
}

.add-button: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;
  }

.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;
}

.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;

}

.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;
}





