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

/* Page styling */
body {
  font-family: 'Latin Modern Roman', 'Times New Roman', Times, serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #000;
  background: #ffffff;
  position: relative;
}

/* Canvas background layer */
#canvas {
  position: fixed;      /* stays in place */
  top: 0;
  left: 0;
  width: 100vw;         
  height: 100vh;        
  z-index: -1;          
  /*for no color shows before WebGL starts */
  background: #ffffff;
}

/* Typography */
h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Lists */
ul {
  list-style: none;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

li:before {
  content: "-";
  position: absolute;
  left: 0;
  color: #1a0033;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  text-shadow: 0.5px 0.5px 1px rgba(0, 102, 204, 0.1);
}

a:hover {
  text-decoration: underline;
}

/* Code block styling */
code {
  display: block;
  background: #eae6d7;
  padding: 10px;
  border-radius: 6px;
  margin: 30px 0 15px 0;
  font-size: 16px;
}

/* Contact section */
.contact {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05);
}
