/* 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." */

html {
  background-color: white;
}

.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

img, h1, .footer {
  margin: auto;
}

h1, h2, h3, .special, .footer {
  font-family: "Coral Pixels", serif;
}

.container{
  display: flex;
  margin: 20px;
  column-gap: 20px;
  padding: 0 100px;
}

body {
  color: black;
  font-family: "Helvetica", sans-serif;
  padding: 20px;
  width: 1000px;
  font: 1em / 1 system-ui;
  margin: 10px 10px 10px 350px;
}

.Essay.Page {
  color: blue;
  padding: 5px;
  border: 1px solid blue;
  width: 300px;
  margin: 2px;
}

.aboutme, .mainpara {
  border: 1px solid black;
  padding: 0.5em;
  width: 350px;
}

ol {
  color: blue;
  padding: 3px;
  border: 1px solid blue;
  width: 300px;
  margin: 1px;
}

a:link, a:visited {
  color:blue;
}

a:hover, a:focus {
  text-decoration: none;
  color: blue;
}

ul {
  width: 350px;
  list-style: none;
  padding: 0;
  margin: 2px 2px 2px 2px;
}