body {
  background-image: url('prettydust.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh; 
}
/* This "Rule Set" targets your main title */
h1.gradient-header {
  /* The Font */
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;

  /* The Gradient Magic */
  background: linear-gradient(to bottom, #808080, #ffffff);
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent; 
  
  /* The Border (Moved here to avoid the 'double layer') */
  border: 5px double gold;
  padding: 20px;
  text-align: center;
  margin: 20px auto; /* Centering it with some breathing room */
  
  /* The Shadow for depth */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
p:first-of-type {
  text-align: center; /* Centers the text horizontally */
  border:5px double gold;
  padding:20px;
  font-family: "Georgia", serif; /* Changes the font to Georgia (with serif as a fallback) */
  font-size:20px auto;
}
