/* 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 {
  display: flex;        
  justify-content: center;
  min-height: 100vh;        
  margin: 2%;
  flex-direction: column;
  font-family: Tahoma, Verdana, Trebuchet MS, sans-serif;
}
h1{
  margin-top: 0;
  margin-bottom: 0;
}
p {
  margin-bottom: 0.25em; /* remove space below paragraph */
}
ol, ul {
  margin-top: 0; /* remove space above list */
  padding-left: 1.5em; /* keep the indent for list items */
}
a {
  transition: all 0.3s ease-in-out;
}
/* All unvisited links will be blue */
a:link {
  color: blue;
}
/* All visited links will also be blue */
a:visited {
  color: blue;
}
/* This is the hover effect */
a:hover {
  color: #0000FF;
  font-weight: bold;
  font-size: 1.1em; /* Make the font slightly bigger */
}