
/* Import the Creepster font from Google Fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');*/

/* Import the Monoton font from Google Fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');*/

/* Import the Bebas Neue font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  /*background: linear-gradient(90deg, white, gray);*/
  background-color: #70faff;   /* #50ffff; #00ffff; cyan */
}

body, h1, p {
  font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-align: center;
  
  /*background-image: url('page 3 of 8.jpg');
  background-attachment: fixed; * This makes the background image fixed while scrolling *
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;*/
  
}

a {
    text-decoration: none;
    color: inherit; /* Ensures that the link color inherits from its parent */
}


/* Specific font for the scary div */
.scary-font {
    font-family: 'Creepster', cursive;
    font-size: 24px;
    color: #ff0000;
    padding: 10px;
    border: 2px solid #ff0000;
    background-color: #000;
    border-radius: 5px;
    margin: 20px 0;
    text-shadow: 2px 2px #000000;
}

/* Specific font for the Art Deco div */
.art-deco-font {
    /*font-family: 'Monoton', cursive*/
    font-family: 'Bebas Neue', sans-serif;
    /*font-size: 24px;*/
    font-size: 20px;
    color: #2c3e50;
    padding: 10px;
    border: 2px solid #2c3e50;
    background-color: #ecf0f1;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
    letter-spacing: 2px;
}


