/* 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 {
  background-color: white;
  color: black;
  font-family: Verdana;
}
/* --------------------
   FONTS
-------------------- */

@font-face {
  font-family: 'prstart';
  src: url('prstart.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'saturno';
  src: url('saturno.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: '712serif';
  src: url('712serif.otf') format('truetype');
  font-display: swap;
}

/* --------------------
   GLOBAL
-------------------- */

body {
  overflow-y: hidden;
  margin: 0;
}

/* --------------------
   LINKS
-------------------- */

a:link {
  text-decoration: none;
  font-family: "prstart";
  font-weight: bold;
}

a:visited {
  color: #9a47b8;
}

a:hover {
  color: black;
  text-transform: uppercase;
  font-family: "saturno";
  font-weight: bold;
}

/* --------------------
   LAYOUT ELEMENTS
-------------------- */

#title {
  position: fixed;
  top: 550px;
  left: 18px;
  color: white;
  font-family: "saturno";
  font-weight: bold;
  font-size: 5rem;
}

#footer {
  position: fixed;
  top: 750px;
  left: 50px;
  color: white;
  font-family: "prstart";
  font-weight: bold;
  font-size: 1rem;
}

#backhome {
  position: fixed;
  top: 550px;
  left: 700px;
  color: white;
  font-family: "prstart";
  font-weight: bold;
  font-size: 1.5rem;
}

/* --------------------
   BLOG CONTAINER
-------------------- */

.colored-square {
  width: 500px;
  height: 500px;
  background-color: lightgrey;

  position: fixed;
  top: 90px;
  left: 40px;
  z-index: 1;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 20px 25px;
  box-sizing: border-box;

  font-family: "712serif";
}

/* --------------------
   BLOG ENTRIES
-------------------- */

.blog-entry h2 {
  font-family: "saturno";
  font-size: 1.2rem;
  margin: 0 0 6px 0;
}

.blog-entry p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.blog-entry a {
  color: inherit;
  display: inline-block;
}

/* --------------------
   DIVIDERS
-------------------- */

hr {
  border: none;
  border-top: 1px solid #999;
  margin: 20px 0;
}
