
/*https://cssgradient.io/*/

body {


background: rgb(238,174,202);
background: linear-gradient(90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);

}

.copy {
  font-style: italic;
  font-size: 12px;
}

.hint {
  font-style: italic;
  border-bottom: thin solid #ccc;
  font-size: 20px;
}

.hintsmall {
  font-style: italic;
  border-bottom: thin solid #ccc;
  font-size: 18px;
}

h2 {
  font-weight: bold;
  font-size:22px;
  border-bottom: thin solid #ccc;
}


h1 {
  font-weight: bold;
  font-size: 22px;
}



.blink {
  color: darkblue;
  animation: darkblue_blink 1s infinite;
}





@keyframes darkblue_blink {
  0%, 50% {
    color: darkblue;
  }
  25%, 75% {
    color: rgb(238,174,202);
  }
}





a:link { text-decoration: none; color: darkblue; font-style: italic; }
a:visited { text-decoration: none; color: darkblue; font-style: italic; }
a:hover { text-decoration: none; color: darkblue; font-style: italic; }
a:active { text-decoration: none; color: darkblue; font-style: italic; }
