@import "compass/css3";
@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap');

:root {
	 background-color: #222;
	 background-attachment: fixed;
	 font-size: 16px;
}
 @media screen and (max-width: 1100px) {
	 :root {
		 font-size: 14px;
	}
}
 @media screen and (max-width: 950px) {
	 :root {
		 font-size: 16px;
	}
}
 @media screen and (max-width: 600px) {
	 :root {
		 font-size: 8px;
	}
}
 @media screen and (min-width: 1300px) {
	 :root {
		 font-size: 18px;
	}
}
 @media screen and (min-width: 1600px) {
	 :root {
		 font-size: 20px;
	}
}
#wrapper{
 	 width: 32rem;
	 margin: 1.5rem auto 0;
}
body {
  background: #222;
  cursor: url('cursor.png'), auto;
}
a {
  cursor: url('click.png'), pointer;
}
.paper {
  position: absolute;
  height: 38rem;
  width: 32rem;
  background: #f2dd72;
  box-shadow: 0px 0px 5px 0px #888;
  z-index: -1;

}
.paper::before {
  content: '';
  position: absolute;
  left: 4rem;
  height: 38.5rem;
  width: 1.25px;
  background: rgba(255,0,0,0.4);
}
.lines {
  margin-top: 2rem;
  height: calc(100% - 1.5rem);
  width: 100%;
  background-image: repeating-linear-gradient(#f2dd72 0rem, #f2dd72 1.5rem, #c2bf61 1.6rem);
}
.text {
  position: absolute;
  top: 2.5rem;
  left: 4.5rem;
  bottom: 0.75rem;
  right: 0.75rem;
  line-height: 1.5rem;
  font-family: 'Homemade Apple';
  overflow: hidden;
  outline: none;
}
.home {
  height: 2.5rem;
  float: left;
  position: relative;
  left: -4rem;
}
/*
.holes {
  position: absolute;
  left: 1rem;
  height: 1.4rem;
  width: 1.4rem;
  background: #222;
  border-radius: 50%;
  box-shadow: inset 0px 0px 2px 0px #888;
}
.hole-top {
  top: 10%;
}
.hole-middle {
  top: 50%;
}
.hole-bottom {
  bottom: 10%;
}
*/