@font-face {
  font-family: "Ollifont";
  src: url("/Ollifont.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e7d69c;
  color: #8c846b;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  font-family: "Ollifont", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #393121;
}

p, span, a, li, td, th, label, input, textarea {
  color: #393121;
}

header {
  text-align: center;
  padding: 1rem;
}

header img {
  width: 200px;
}

a {
  color: #393121;
  text-decoration: none;
}

a:hover {
  color: #393121;
  text-decoration: underline;
}

main {
  flex: 1;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

footer {
  background-color: #393121;
  color: #e7d69c;
  text-align: center;
  padding: 1.5rem 2rem;
  width: 100%;
}

footer p,
footer a,
footer span {
  color: #e7d69c;
}

footer a:hover {
  color: #e7d69c;
}

body {
  cursor: url("/projects/cursor.png"), auto;
}