:root {
  --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
  --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
  font-style: italic;
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
  font-style: italic;
  font-weight: bold;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #08031A;
  background-image: var(--body-bg-image);
  background-size: 65px;
  color: #fceaff;
}

#container {
  max-width: 900px;
  margin: 0 auto;
}

a {
  color: #ED64F5;
  font-weight: bold;
}

#header {
  width: 100%;
  height: 150px;
  background-image: var(--header-image);
  background-size: cover;
  background-position: center;
}

#flex {
  display: flex;
}

main {
  background-color: #43256E;
  padding: 20px;
}

footer {
  height: 40px;
  background-color: #13092D;
  text-align: center;
  padding: 10px;
}

h1, h2, h3 {
  color: #ED64F5;
}

h1 {
  font-size: 25px;
}

strong {
  color: #ED64F5;
}

@media (max-width: 800px) {
  #flex {
    flex-direction: column;
  }
}
