/* 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;
  margin: 0
}

.paddingDeCinco {
 padding: 15px
}

.prueba1 {
  background-image: linear-gradient(135deg, #fa8e8e 12.50%, #ffffff 12.50%, #ffffff 25%, #a3cbff 25%, #a3cbff 37.50%, #fff 37.50%, #fff 50%, #fa8e8e 50%, #fa8e8e 62.50%, #ffffff 62.50%, #ffffff 75%, #a3cbff 75%, #a3cbff 87.50%, #fff 87.50%, #fff 100%);
  background-size: 40.00px 40.00px;
}
.abajoDelTodo {
  position: sticky;
  bottom: 0
}
.arribaDelTodo {
  position: sticky;
  top: 0
}
@font-face {
  font-family:"KGPrimaryPenmanship";
  src: url(fonts/KGPrimaryPenmanship.ttf);
}
.penmarkshipFont {
  font-family: "KGPrimaryPenmanship";
  font-size: 23px
}