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

@font-face {
    font-family: mamakilodeko;
    src: url(Fonts/MamakiloDecorative.ttf);
}

@font-face {
    font-family: giraffe;
    src: url(Fonts/Giraffe.otf);
}


@font-face {
    font-family: gilgongo;
    src: url(Fonts/gilgongo.doro.ttf);
}



body {
  width: 90%;
  margin-left: 3%;
  margin-top: 2%;
  margin-bottom: 2%;
  line-height: 130%;
}


.image-row {
  display: flex;
  justify-content: space-between; /* this will add equal space between each image */
}



.col-container {
  display: table; /* Make the container element behave like a table */
  width: 100%; /* Set full-width to expand the whole page */
}

.col {
  display: table-cell; /* Make elements inside the container behave like table cells */
}



/* unvisited link */
a:link {
  color: #ffa000;
}

/* visited link */
a:visited {
  color: #ffff30;
}

/* mouse over link */
a:hover {
  color: #ff6000;
}

/* selected link */
a:active {
  color: #ff0000;
}

