@font-face {
  font-family: 'Heading Font';
  src: url('assets/OldLondon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url('assets/background.jpg');
  background-repeat: repeat; 

  display: grid;
  place-items: center; /* Centers horizontally AND vertically */

}

.heading-text {
  font-family: 'Heading Font';
  color: rgb(248, 212, 120);
  text-align: center;
  font-size: 75px;
  position: relative;
  
  /* Inner stroke */
  -webkit-text-stroke: 4px #000000; 
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  paint-order: stroke fill;
}

.disclaimer {
    
    text-align: center;
    font-size: 20px;
    color:red;
    -webkit-text-stroke: 1.5px #000000; 
    paint-order: stroke fill;
}

#hyperlink-holder {
    width: 500px;

    text-align: center;
    outline: 5px solid #7d5603;
    text-shadow: 0 4px 12px rgba(100, 68, 5, 0.6);
    
    background-image: url('assets/wood.jpeg');
    background-repeat: no-repeat; 
    background-size: cover;        
    background-position: center;  

    padding: 24px 30px;
    margin-bottom: 50px;
}

a {
  display: block; 
  margin-bottom: 10px; 
  color: red;

  -webkit-text-stroke: 4px #000000; 
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  paint-order: stroke fill;
}

#spinningcultimage {
    width: 800px;
}
