@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --background: #222222;
  --text-color: #f5f4f4;
  --text-font: "Inter", sans-serif;
  --headers-font: "Montserrat", sans-serif;
  --subtitle-color: rgb(233, 148, 22);
}

/*Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--text-color);
  font-family: var(--text-font);
}

body h1,
h2,
h3 {
  font-family: var(--headers-font);
  color: var(--subtitle-color);
}

h3 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

img {
  width: 40rem;
  height: auto;
  border-radius: 10px;
}

p,
li {
  font-size: 1.2em;
  line-height: 1.6em;
}

a:hover {
  color: var(--subtitle-color);
  transition: color 0.3s ease;
}

.flex-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
  margin: auto;
}

.intro {
  margin: 4em;
}

.anime {
  margin: 4em;
}

.anime p {
  margin-top: 1em;
  margin-bottom: 1em;
}

.intro p {
  margin-top: 1em;
  margin-bottom: 1em;
}

#page-subtitle {
  font-size: 2em;
}
