@font-face {
  font-family: Editorial New Regular;
  src: url(assets/PPEditorialNew-Regular.otf);
}

@font-face {
  font-family: Editorial New Italic;
  src: url(assets/PPEditorialNew-Italic.otf);
  font-style: italic;
}

body {
  /* set up page */
  background-color: #fffdf7;
  margin: 2rem;

  /* font styles */
  font-family: Editorial New Regular;
  line-height: 1.2;
  font-size: 16px;
  color: #2c2c2c;
  
  cursor: none; /* Hide the default cursor */
  overflow: hidden;
}

p {
  max-width: 26ch;
  margin-bottom: 0.5rem;
}

/* Style for the top div */
#info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem; /* Adjust as needed */
}

/* Style for the bottom div */
#contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem; /* Adjust as needed */
}

a {
  color: #ff0047;
}

a:hover{
  font-style: italic;
}

#stamp {
  height: 100vh;
  width:  100vw;
  color: #ff0047;
  z-index: 1;
}

#info, #contact {
  z-index: 100;
}

.custom-cursor {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* Ensure the cursor doesn't interfere with content */
  font-size: 16px;
  color: red; /* Customize the cursor color */
  transform: translate(-50%, -50%);
  user-select: none;
}

@media only screen and (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}


