:root {
  --light-blue: #00aeff;
  --blue: #039ce4;
}

@font-face {
  font-family: "minecraft";
  src: url("./assets/fonts/Minecrafter.ttf");
}

@font-face {
  font-family: "minecraftia";
  src: url("./assets/fonts/Minecraftia-Regular.ttf");
}

* {
  font-family: "minecraftia";
}

h1,
h2,
h3,
h4,
h5,
h6,
.header__title {
  font-family: "minecraft";
}

a {
  text-decoration: none;
  color: inherit;
}

.body__header,
.body__footer {
  background: linear-gradient(to right, var(--light-blue), var(--blue));
}

/* Header */
.body__header {
  height: 5rem;
  padding: 0 10rem;

  display: flex;
  align-items: center;
}

.header__icon {
  width: 3.5rem;
  border-radius: 15px;
}

.header__title {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #fff;
  margin: 0.3rem 0 0 1rem;
}

/* Main */
.hero__title {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  text-align: center;

  margin-top: 5rem;
}

.hero__subtitle {
  font-size: 1.2rem;
  text-align: center;

  margin-top: 1rem;
}

.hero__cover {
  display: block;
  border-radius: 25px;
  padding: 5px;
  border: 5px solid var(--light-blue);
  margin: 1.5rem auto;
}

.content__title {
  font-size: 2cqmax;
  text-align: center;

  margin-top: 5rem;
}

.content__title::after {
  display: block;
  content: "-----------------";

  position: relative;
  top: -1rem;
}

.content__info {
  padding: 0 20rem;
  display: flex;
  justify-content: center;
  align-items: stretch; /* make both items equal height */
  gap: 2rem;
}

.content__info > * {
  padding: 1.5rem;
  border: 5px solid var(--light-blue);
  border-radius: 15px;
}

.info__plugins {
  flex: 1; /* takes 1 share of available space */
}

.info__general {
  flex: 2; /* takes 2 shares of available space */
}

.plugins__title,
.general__title {
  font-size: 1.3rem;
}

.plugins__list,
.general__table {
  margin-top: 1rem;
}

.list__plugin {
  line-height: 1.5rem;
}

.list__plugin::before {
  content: " > ";
}

.general__table {
  width: 100%;
}

tr {
  height: 1.5rem;
}

/* Footer */
.body__footer {
  font-family: "minecraftia";
  font-size: 0.8rem;
  color: #fff;

  height: 5rem;
  padding: 0 10rem;
  margin-top: 5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__discord {
  background-color: #fff;
  color: var(--light-blue);

  padding: 1rem;
  padding-bottom: 0.5rem;
  border-radius: 15px;
  transition: all 200ms ease;
}

.footer__discord:hover {
  transform: scale(110%);
}
