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

/* Global styles */
body {
  font-family: Lucida Console, monospace;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  cursor: url("SCursorSmall.png") 12 50, auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styles */
header {
  background-color: #f1f1f1;
  padding: 20px;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    font-family: sans-serif;
    
}


/* Content styles */

/* Footer styles */
footer {
  background-color: #f1f1f1;
  padding: 0px;
  text-align: center;
  margin-top: auto;
}

