/* 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, body {
  height: 100%;
  margin: 0;
  background-color: black;
  color: white;
}

.entry-page {
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
}

.introduction {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 300px;
  padding-right: 300px;
}

h1 {
  color: #A3DAE6; 
  font-family: Trattatello, fantasy;
}


h3 {
  font-family: Trattatello, fantasy;
}

p {
 font-family: New Rocker;
}

li{
  font-family: New Rocker;
}

/* unvisited link */
a:link {
  color: #00CDFF;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #7EA6BF;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: red;
  text-decoration: none;
}

/* selected link */
a:active {
  color: red;
  text-decoration: none;
}


.entry {
  display: flex;
  flex-direction: column;  /* stack items vertically */
  align-items: center;     /* center horizontally inside */
  text-align: center;
  width: fit-content; 
}


.new-rocker-regular {
  font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
}

