
* {
  box-sizing: border-box;
}


body {
  
  background-color: black;
  color: ghostwhite;
  background-image: url('scary/walk.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    height: auto;
  font-family: 'Courier New', Courier, monospace;
  
}  

a {
    color: lightgreen; 
    text-decoration: dashed;
}

.condensed-text {
    font-stretch: condensed; /* or ultra-condensed, extra-condensed */
}


div {
    width: 100%;
    border: 5px purple;
    background-color: darkred;
    margin: 30px auto;
    padding: 15px;
}

p {
    color: ghostwhite;
    font-size: 1em:
}