/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #fdfdfd;
  margin: 0;
  min-height: 100vh;
  background-repeat: no-repeat;
  
  background-image: 
    /* Layer 1: Vertical Red Line */
    linear-gradient(to right, transparent 79px, #ffadad 79px, #ffadad 81px, transparent 81px),
    
    /* Layer 2: Horizontal Red Line */
    linear-gradient(to bottom, transparent 79px, #ffadad 79px, #ffadad 81px, transparent 81px),
    
    /* Layer 3: The Eraser */
    linear-gradient(to bottom, #fdfdfd 0px, #fdfdfd 80px, transparent 80px),
    
    /* Layer 4: The Blue Lines */
    repeating-linear-gradient(to bottom, transparent 0px, transparent 7px, #abced4 7px, #abced4 8px, transparent 8px, transparent 24px);

  padding-left: 100px;
  padding-top: 85px;
  
  font-family: sans-serif;
  color: #1a1a1a;
  line-height: 24px;
}

h1, p, ul {
  margin: 0;
}

h1 {
  padding-bottom: 24px;
}