@import url('https://cdn.jsdelivr.net/npm/@catppuccin/palette/css/catppuccin.css');

body {
  background: var(--ctp-frappe-crust);
  color: var(--ctp-frappe-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: "Martian Mono", monospace;

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

a {
  color: var(--ctp-frappe-blue);
}

.main-container {
  max-width: 1280px;
  margin: 0;
  padding: 0;
}

#title {
  font-size: 80pt;
  font-weight: 800;


  @media (max-width: 850px) {
    font-size: 40pt;
  }

  @media (max-width: 425px) {
    font-size: 20pt;
  }
}

.banner {
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-group {
  text-decoration: none;
  list-style-type: none;
  margin: 0;
}

.bottom {
  width: 100%;
  height: 50px;
  margin: 0;
  padding-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    box-sizing: border-box;
    height: 100%;
  }

}

.credit-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--ctp-frappe-lavender);
  border-radius: 4px;
  margin: 4px;
  box-sizing: border-box;
  height: 50px;
  gap: 4px;

  img {
    height: 40px;
  }
}

.content {
  display: flex;
  flex-direction: row;

  @media (max-width: 850px) {
    flex-direction: column;
    width: calc(100% - 9px);
  }

  h3 {
    text-align: center;
  }
}

.nav {
  box-sizing: border-box;
  min-width: 175px;
  background: var(--ctp-frappe-mantle);
  padding: 4px;
  border: 1px solid var(--ctp-frappe-red);
  border-radius: 4px;
  margin: 4px;
  height: fit-content;

  @media (max-width: 850px) {
    box-sizing: border-box;
    width: 100%;
  }

  hr {
    border-color: var(--ctp-frappe-red);
  }
}

.center {
  box-sizing: border-box;
  width: 100%;
  background: var(--ctp-frappe-base);
  padding: 4px;
  border: 1px solid var(--ctp-frappe-green);
  border-radius: 4px;
  margin: 4px;
}

.status {
  min-width: 300px;
  background: var(--ctp-frappe-mantle);
  padding: 4px;
  border: 1px solid var(--ctp-frappe-mauve);
  border-radius: 4px;
  margin: 4px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: 4px;

  @media (max-width: 850px) {
    box-sizing: border-box;
    width: 100%;
  }

  hr {
    width: 99%;
    border-color: var(--ctp-frappe-mauve);
  }
}

.item {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.content-box {
  display: flex;
  flex-direction: column;
  padding: 4px;
  border: 1px solid var(--ctp-frappe-yellow);
  border-radius: 4px;
  margin: 4px;
  gap: 12px;

  h3 {
    text-align: center;
  }
}