html {
  font-size: 62.5%;
}

body {
  --primary-background: #260138;
  --secondary-background: #361148;
  --primary-foreground: #EEEEEE;
  --secondary-foreground: #A0A0A0;
  --primary-border: 2px solid #9055A2;

  --link: #F28DF2;

  --green: #8DF28D;

  background-color: var(--primary-background);
  color: var(--primary-foreground);
  font-size: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
blockquote,
pre {
  margin: 0;
  padding: 0;
}

a {
  color: var(--link);
  text-decoration: 2px wavy underline;
}

a:hover {
  background-color: var(--link);
  color: var(--primary-background);
  text-decoration: none;
}

header.header {
  background-color: var(--secondary-background);
  border-bottom: var(--primary-border);
  border-left: var(--primary-border);
  border-right: var(--primary-border);
  border-radius: 0 0 1em 1em;
  padding: 2rem;
}

main > h1 {
  margin-top: 2rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.link-list {
  list-style-type: square;
  padding: 2rem;
}

.link-list.big {
  font-size: 3rem;
  padding: 2rem 3rem;
}

.terminal {
  background-color: var(--secondary-background);
  border: var(--primary-border);
  border-radius: 0 1em;
  padding: 2rem;
  white-space: pre-wrap;
}

.terminal .comment {
  color: var(--secondary-foreground);
}

.footer {
  background-color: var(--secondary-background);
  border-top: var(--primary-border);
  border-left: var(--primary-border);
  border-right: var(--primary-border);
  border-radius: 1em 1em 0 0;
  margin-top: 2rem;
  padding: 2rem;
}

.divider {
  background-color: var(--divider-color);
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.divider.green {
  --divider-color: var(--green);
}
