@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');

.syne-mono-regular {
  font-family: "Syne Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

font-face { 
	font-family: "KiwiSoda"; 
	src: url("fonts/kiwisoda.ttf") format("truetype"); 
	font-weight: normal;
	font-style: normal; 
}

.KiwiSoda {
	font-family: "KiwiSoda";
	font-style: normal;
}

a:link {
  color: pink;
}

a:visited {
  color: green;
}

a:hover {
  text-decoration: none;
}

body {
  
  background-color: white;
  color: black;
  font-family: 'Syne Mono', sans-serif;
  background: url("camera.png");
  background-size: cover;
}

html, body {
    cursor: url("wiimote.png"), default;
    /* just change the cursor.ico path to your location */
}

.about-button {
 width: 100px;
 height: 100px;
 display: inline-block;
 background: url("journal.png");
 background-size: 100%;
 transition: transform 0.1s ease-in-out;
}

.about-button:hover {
  transform:rotate(10deg) scale(2);
}


.about-button span {
  visibility: hidden;
}


.about-button:hover span {
  visibility: inherit;
}


.reel {
 background: url("reel.png");
 background-size: 100%;
}

