html {
    height: 100%;
	font: lighter 32px monospace;
	cursor: url('cursor.png'), auto;
	margin: 8px;
}

body {
    display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;   
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h4 {
    font-weight: bold;    
}

h4 + p {
    margin-top: 0;   
}

.paper {
    margin: 20px;
    padding-bottom: 10px;
    box-shadow: 10px 10px 10px #aaa;
    border-radius: 2px 20px 20px 2px;
    border: 1px solid #777;
    background-color: #fff8f8;
    position: relative;
    max-width: 1200px;
}

.paper::after {
    content: " ";
    background-color: #f00;
    position: absolute;
    width: 2px;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 120px;
}

.lined {
    background: repeating-linear-gradient( #fff8f8, #fff8f8 36px, #9198e5 37px, #9198e5 38px);
    background-position: 0 -35px;   
}

.paper h4 {
    margin: 60px 0 -20px 130px;
    background: transparent;
}

.paper p, .paper li {
    margin-left: 130px;
    line-height: 38px;
    background: transparent;
}

.paper ul {
    padding: 10px 0 0 0;
}

/*.hole {*/
/*    mask: radial-gradient(circle at 100px 100px, #0000 15px, #000 16px);*/
/*}*/

.holed {
    mask: radial-gradient(circle at 100px 100px, #0000 15px, #000 16px);
    mask-position: center, 20em;
    /*background-color: black;*/
    /*width: 20px;*/
    /*height: 20px;*/
}

.hole-shadow {
    width: 16px;
    height: 16px;
    background: transparent;
    border-radius: 20px;
    border: 1px solid black;
    position: relative;
    top: 100px;
    left: 100px;
}

/*.paper li {*/
/*    margin-left: 130px;*/
/*    line-height: 36px;*/
/*}*/

li::marker {
    line-height: 34px; 
}

button, a {
    cursor: url('cursor.png'), auto;   
}

button:hover:active, a:hover:active {
    cursor: url('click.png'), auto;   
}

.center {
  display: flex;
  justify-content: center;
}

.menubar {
    width: 100%;
    margin-bottom: 20px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  z-index: 2;
} 

.menu a {
  width: max-content;
  padding: 0 20px;
  background-color: #aaa;
  border: 4px solid #00000033;
  box-shadow: 10px 10px 5px #555;
  font-size: 40px;
  font-weight: bold;
  font-family: "Comic Sans MS", "Comic Sans", sans-serif;
  transition: .8s;
  text-decoration: none;
  color: #000;
  text-align: center;
  line-height: 100px;
}

.menu a:nth-child(1) {
  background-color: #dd8400;
}
.menu a:nth-child(2) {
  background-color: #00ddcc;
}
.menu a:nth-child(3) {
  background-color: #ccaa55;
}

button {
  background-color: #444;
  color: #fff;
  font-size: 16px;
  width: max-content;
  height: max-content;
  padding: 10px;
}

button:hover, a:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px #222;
}