:root{
  --bkg-image: url('bkgs/Psycho_1.jpg');
}

body {
  background-color: white;
  color: black;
  background-image: var(--bkg-image);
  text-align: center;
}

#containerOut{
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  border: solid 3px;
  padding: 20px;
  margin-top: 300px;
  background-color: green;
}
    
  #containerIn{
  border: dashed 2px;
  border-radius: 5px;
  padding: 10px;
  background-color: white;
  }
  
  #container{
    border: solid 1px;
    }
    
  #contents{
    margin-top: 75px;
    margin-bottom: 75px;
    }
    
  h1{
    text-align: center;
    }
    
  p{
    text-align: center;
    font-family: monospace;
    font-size: 15px;
    font-style: italic;
  }
  
  img{
    margin: 10px;
    text-align: center;
    }