/* 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 {
  /* setting the basic colours of the website! */
  background: #ED3A89;
  background: linear-gradient(135deg, rgba(237, 58, 137, 1) 25%, rgba(75, 177, 217, 1) 50%);
  color: black;
  font-family: Verdana;
  
  /* fixes the repeating gradient */
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  /* Text formatting */  
}

/* formats the headers 1 and 2 to display in the center of the screen */
h1,h2 {
  text-align: center;
  color: Black;
}

.MainParagraph {
  /*Horizontally centers the contents of the div */
  margin:auto;
  width: 50%;
  padding: 10px;
}

.MyInterests {
  margin:auto;
  width:50%;
  
  /* vertically centers the contents of the div */
  display:flex;
}
