/* css styles */

.grid {align-items: flex-end}

.quarto-figure, td.listing-image {
  background: white;
  padding: 9px;
}

.callout.callout-style-simple .callout-body {
  font-size: 1rem;
}

.navbar, .navbar-title { 
  font-family: Gill Sans;
  font-size: 1rem;
  font-variant: small-caps;
}

.background-gradient {
	background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
}

.quarto-navbar-tools {
  margin-top: 4px;
}

/**********************************************************/
/* Thanks https://alvarotrigo.com/blog/css-text-animations/ */

.shiny-text {
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}