@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&display=swap");

body {
  background-color: #090909;
  color: #cccccc;

  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;

  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1 {
  margin: 0;
  font-size: 2.75rem;
}

h2 {
  margin-top: 10px;
}

h3,
p {
  margin: 0;
}

p {
  color: #929292;
}

i {
  font-size: 1.75rem;
  color: #d1d1d1;
  margin-bottom: 10px;
}

.watermark {
  width: 155px;
  opacity: 70%;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;

  padding: 40px 20px;
  height: 100%;
  max-height: 100vh;
}

.content::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vh;
  opacity: 15%;
  background: radial-gradient(ellipse, #eb3333, transparent 80%);
  filter: blur(150px);
  pointer-events: none;
}

.card-row {
  gap: 25px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;

  display: flex;
  flex-direction: row;
}

.tutorial-row {
  gap: 25px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;

  display: flex;
  flex-direction: column;
}

.discord {
  text-decoration: none;
  color: inherit;

  width: 150px;
  height: auto;
  padding: 1.5%;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #1c1c1c;
  box-shadow: 4px 4px 10px rgb(172, 172, 172, 0.075);

  border-radius: 15px;
  border: 1px solid #333333;

  transition: all 150ms ease-in-out;
}

.discord:hover {
  border-color: #494949;
  box-shadow: 4px 4px 20px rgb(172, 172, 172, 0.2);
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  text-decoration: none;
  color: inherit;

  width: 150px;
  height: 150px;
  text-align: center;

  background-color: #1c1c1c;
  box-shadow: 4px 4px 10px rgb(172, 172, 172, 0.075);

  border-radius: 15px;
  border: 1px solid #333333;

  transition: all 150ms ease-in-out;
}

.card p {
  font-size: 0.7rem;
}

.card:hover {
  border-color: #494949;
  box-shadow: 4px 4px 20px rgb(172, 172, 172, 0.2);
}

.tutorial {
  display: flex;
  flex-direction: column;
  justify-content: center;

  text-decoration: none;
  color: inherit;

  width: 100%;
  max-width: 850px;
  height: auto;
  text-align: center;
  padding: 15px 15px;

  background-color: #1c1c1c;
  box-shadow: 4px 4px 10px rgb(172, 172, 172, 0.075);

  border-radius: 15px;
  border: 1px solid #333333;

  transition: all 150ms ease-in-out;
}

.tutorial p {
  font-size: 0.85rem;
}

.tutorial:hover {
  border-color: #494949;
  box-shadow: 4px 4px 20px rgb(172, 172, 172, 0.2);
}

/* meowpurrpur - imtheo.lol */