/*Entry Page*/

/* style.css */
* {
  cursor: url(https://cur.cursors-4u.net/others/oth-4/oth378.cur), auto !important;
}

.box { /*shadow text box*/
  display: block;
  margin-top: 400px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  box-shadow: 
    2px 2px 4px rgba(117, 117, 117, 0.8), 
    -2px -2px 4px rgba(117, 117, 117, 0.8);
 }
 
 p {
  margin-top: 10px;
  margin-bottom: 20px;
}
 
 .intro {
  font-size: 24px;
  color: white;
}

@font-face {
    font-family: "booter"; 
    src: url("https://elbowthief.neocities.org/fonts/BOOTER-SKINNY.ttf") format("truetype");
}

body { /*background image*/
  background-image: url('https://vampirelounge.neocities.org/graveyard_gate_2kblur.jpg');
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 19;
  
  font-family: 'booter';
  margin: auto;
  background-color:  #000000;
  background-size: 300px;
  color: black;
  background-size: 100%;
  background-attachment: fixed;
  letter-spacing: 0.05em;
}

body a { /*Yes & No text*/
  font-size: 20px;
  color: white;
  text-decoration: none;
}

body a:hover {
  text-decoration: underline; /* underline on hover */
}



