/* Put any custom CSS styles here.  */
/* Be sure to delete the <style> tag in index.html if you want to use this stylesheet. */
body {
  margin: 0;
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  min-height: 100vh;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  background: linear-gradient(147.52deg, #f9fafb, #d2d6db);
  margin: 0;
  line-height: normal;

}

* {
  box-sizing: border-box;
}


/* CSS Start */
#card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 8px;
  overflow: hidden;
  
}

.card-image {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 340px;
  overflow: hidden;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -4px 12px;
  padding: 24px 16px;
  gap: 12px;
  
}

#description {
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: 'Noto Sans';
  color: #525252;
  margin: 0;

}

.tag-text {
  border-radius: 9999px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  box-sizing: border-box;
  display: flex;
  padding: 2px 8px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #15803d;
}


#card-header {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
  font-family: 'Noto Sans';
}

.card-title {
  width: 100%;
  position: relative;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #171717;
  text-align: left;
  display: inline-block;
  margin: 0;
}

.card-desc-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  text-align: left;
  color: #525252;
  font-family: 'Noto Sans';

}

.read-more {
  color: #4338ca;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


/* CSS End */

.credits {
  color: #777;
  position: fixed;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  text-align: center;
}

.credits a {
  color: #000;
  font-weight: bold;
}
