:root{
    --bg-color: #EEF6EE;
    --border-color: #E2E8F0;
    --status-color: #22C55E;
    font-family: "Inter";
}

.background{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

body{
    background-color: var(--bg-color);
}

.main{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.box{
    width: 90%;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0px 1px 2px 0px hsla(0, 0%, 0%, 0.226);
}

.card a {
  text-decoration: none
}

.content {
  padding: 1.1rem;
}

.title {
  width: 100%;
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  overflow-wrap: break-word;
}

.desc {
  width: 100%;
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
  overflow-wrap: break-word;
}

.action {
  display: inline-flex;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  align-items: center;
  gap: 0.25rem;
  background-color: #2563EB;
  padding: 4px 8px;
  border-radius: 4px;
}

.action span {
  transition: .3s ease;
}

.action:hover span {
  transform: translateX(4px);
}
