.cards {
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(126deg, #1631ef 0%, #0d1a73 100%);
  border-radius: 16px;
  padding: 12px 14px;
  gap: 16px;
  box-shadow: 6px 6px 0 0px #0e1b79;
  border: 1px solid #a1a7d1;

  .topPart {
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;

    .topSmallHeading {
      color: #ecf5fe;
    }
    .iconStyle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      padding: 10px;
      background-color: #233adbc4;
    }
  }
  .iconStyle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .bottomPart {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
    color: #ecf5fe;

    .h1Style {
      font-size: 32px;
      color: rgb(236 245 254);
    }

    .linkStyle {
      color: #ecf5fe;
      margin-bottom: 5px;
      transition: 0.3s;
      background: transparent;
      border: none;
      outline: none;
      font-family: "switzerRegular";
      font-size: 16px;
      cursor: pointer;

      &:hover {
        color: #ccd2fd;
      }
    }
  }
}

.notFoundCard {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: linear-gradient(126deg, #1631ef 0%, #0d1a73 100%);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 6px 6px 0 0px #0e1b79;
  border: 1px solid #a1a7d1;

  .message {
    color: #ecf5fe;
    font-size: 16px;
    font-family: "switzerRegular";
    text-align: center;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
  }
}
/* Media Query */
/* =========== */
@media screen and (max-width: 600px) {
  .cards {
    width: 100%;
    box-shadow: 0px 3px 0 0px #0d4179;
  }
  .topSmallHeading {
    font-size: 16px;
  }
  .cards .bottomPart .h1Style {
    font-size: 28px;
  }
  .cards .bottomPart .linkStyle {
    font-size: 14px;
  }
}
