
  /* Cool Header thing */
#H {
  background-color: #00ACE6;
  color: black;
  padding: 40px;
  text-align: center;
  font-size: 70px;
}

/* Red Text */
.red {
    color: red;
}

/* Background Image */
body{
   background-image: url('Images/bliss.jpg');
   background-repeat: no-repeat;
   background-attachment: fixed;
   background-size: cover;
}

/* Section Styling */
section {
  padding: 20px;
  border: 7px solid #ffffff;
}

/* Paragraph Styling */
p {
  margin-top: 10px;
  margin-bottom: 15px;
  margin-right: 0px;
  margin-left: 0px;
  
}

/* Outset Border */
.outset {
  border-style: outset;
  border-color: #adadad;
  background-color: #ffffff;
  font-size: 20px;
}
/* I also put font size in there because my text was too small and 
rather than having another class, why not add onto an existing one. */