/* 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: 'Cicero12';
  font-style: normal;
  font-weight: 400;
  src: url(Jessen-Cicero12.otf) format('truetype');
}

@font-face {
  font-family: 'Horace';
  font-style: normal;
  font-weight: 400;
  src: url("VotH Petrarch's Horace Carolingian Minuscule TTF v1.1.ttf") format('truetype');
}

body {
  background-color: #524745;
  color: #AEEBD1;
  font-family: 'Horace';
  cursor: url("abelmosk_cursor.png"), auto;
}

a:link, a:visited {
  color: #e8dfd8;
  background-color: transparent;
  text-decoration: none;
}

.borderlessBox {
  color: #AEEBD1;
  font-size: 27px;
}

.margin {
  color: #AEEBD1;
  font-size: 27px;
  background-image: url('/a_motif_margin_repeating.png');
  background-repeat: repeat;
  background-size: 77px auto;
  float: right;
}

.scrollBox {
  color: #AEEBD1;
  font-size: 27px;
  display: grid;
  grid-template-columns: 77px 4fr 77px;
  border-radius: 17px;
  overflow: hidden;
}

.azulejoBox {
  color: #AEEBD1;
  font-size: 27px;
  display: grid;
  grid-template-columns: 140px 4fr 77px;
  border-radius: 17px;
  overflow: hidden;
}

.scrollGrid {
  display: grid;
  grid-auto-flow: row; /* Default behavior */
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.button {
  /*background-color: #3b7d8a;*/
  /*background-color: #356092;*/
  display: flex;
  justify-content: left;
  align-items: left;
  color: #e8dfd8;
  font-size: 27px;
}

p {
    font-size: 27px;
}