html {
  height: 100%;
  width: 100%;
  color: white;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

body {
  margin: 0;
  background: #101827;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-size: 10px;
}

main {
  display: flex;
  width: 100vw;
  height: calc(100vh - 25px);
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cover-image {
  width: 200px;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
  background-size: cover;
  transition: 0.5s;
  background-color: #ababab1c;
}

.cover-image>img {
  position: absolute;
}

main:hover .cover-image {
  width: 210px;
  height: 140px;
}

.main-card {
  display: flex;
  flex-direction: column;
}

.card-universe {
  font-size: 10px;
  font-weight: 400;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.card-project {
  font-size: 25px;
  margin: 2.5px 0;
  max-height: 60px;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-tag {
  font-size: 10px;
  border-color: rgba(103, 6, 206);
  border-width: 0.75px;
  border-style: solid;
  border-radius: 5px;
  padding: 2px 5px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.model-type {
  display: none;
}

.card-actions {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 15px;
  transition: 0.5s;
}

.card-action:hover {
  background-color: rgb(211, 211, 211, 0.1);
}

.card-action-icon {
  font-size: 12.5px;
}

.tryit {
  background-color: #35ecd9;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 15px;
}

.tryit a {
  color: rgb(31, 41, 55);
  text-decoration: none;
}

.footer {
  display: flex;
  background-color: rgb(31, 41, 55);
  color: rgb(156, 163, 175);
  width: 100vw;
  height: 25px;
  gap: 5px;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
}

.footer-link {
  font-size: 12.5px;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
}

.footer-logo {
  max-height: 17px;
  margin-right: 5px;
}


.loading-title {
  min-height: 25px;
  margin: 7.5px 0;
  min-width: 50px;
  background-color: #ababab1c;
  border-radius: 100px;
}

.loading-hide {
  display: none;
}

.loading-action {
    color: transparent;
    background-color: #ababab1c;
}

.loading-action > * {
    color: transparent !important;
}

.loading-universe {
    background-color: #ababab1c;
    color: transparent;
    border-radius: 100px;
}

.error {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #101827;
    display: none;
    align-items: center;
    justify-content: center;
}

.error-message {
    text-align: center;
}

.error-message {}

.error-message * {
    font-weight: revert;
    font-size: 3.5vw;
}

.error-link {display: flex;text-decoration: none;color: #fff;justify-content: center;}

.error-link > * {
    font-size: 12px;
}

.error-dev {
    background-color: #1f2937;
    border-radius: 5px;
    font-size: 8px;
    font-weight: lighter;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    padding: 5px 10px;
    margin: 10px;
}


@media screen and (max-width: 499px) {
  main {
    flex-direction: column;
  }
}