@font-face {
    font-family: 'Sharpier';
    src: url('/fonts/Sharpier-Regular.woff2') format('woff2'),
        url('/fonts/Sharpier-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenDyslexic';
    src: url('/fonts/OpenDyslexic-Bold.woff2') format('woff2'),
        url('/fonts/OpenDyslexic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenDyslexic';
    src: url('/fonts/OpenDyslexic-BoldItalic.woff2') format('woff2'),
        url('/fonts/OpenDyslexic-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'OpenDyslexic';
    src: url('/fonts/OpenDyslexic-Regular.woff2') format('woff2'),
        url('/fonts/OpenDyslexic-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenDyslexic';
    src: url('/fonts/OpenDyslexic-Italic.woff2') format('woff2'),
        url('/fonts/OpenDyslexic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

.site-description {
    font-family: 'OpenDyslexic', Helvetica, Arial, sans-serif;
    font-size: 16px !important;
}

:root {

    --cassiopeia-color-primary: black;
    --cassiopeia-color-hover: darkgreen;
    --cassiopeia-color-link: limegreen;
}

body {
    font-family: 'OpenDyslexic', Helvetica, Arial, sans-serif;
    color: #dddddd;
    background-color: black;
}

h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1 {
    font-family: 'OpenDyslexic', Helvetica, Arial, sans-serif;
    color: #dddddd;
}

a {
    color: limegreen;
}

a:hover {
    color: green;
}

th, td {
  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 0px;
  padding-right: 5px;
}

.breadcrumb {
    --breadcrumb-divider-color: #cccccc;
    --breadcrumb-item-active-color: #dddddd;
    background-color: green;
}

.card {
  --card-color: lightgrey;
  --card-border-color: limegreen;
  --card-bg: ;
}

.card-header {
  color: #ffffff;
}

.container-header .site-description {
    color: limegreen;
}

.plyr--audio .plyr__controls {
    background: black !important;
}

details {
  padding: 10px;
  background-color: black;
  border-radius: 5px;
  transition: 0.2s background linear;
}

/*details:hover {
  background: darkgreen;
}*/

summary {
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 10px; 
}

summary::marker {
  color: limegreen;
  font-size: 1.2em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 5px;
  justify-content: center;
  width: 100%;
}

.square {
    width: 100px;
    height: 100px;
    background-color: black;
    border: 1px solid green;
    box-shadow: 4px 4px #333;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.square:active {
    box-shadow: 1px 1px #111;
    transform: scale(0.95);
    background-color: red;
}

.mole-image {
  width: 100px; /* Set the desired width */
  height: 100px; /* Set the desired height, same as width for a circle */
  border-radius: 50%; /* This makes the image circular */
  overflow: hidden; /* Ensures the image is contained within the circle */
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(6, 50px);
  gap: 5px;
  justify-content: center;
  width: 100%;
}

.memory-square {
    width: 50px;
    height: 50px;
    border: 1px solid green;
    cursor: pointer;
    position: relative;
    background-size: cover; 
    background-position: center; 
}

.memory-square-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.memory-square.flipped .memory-square-inner {
  transform: rotateY(180deg);
}

.memory-square-back {
  transform: rotateY(180deg);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}

.site-button {
    text-align: center;
    color: white;
    border-radius: 5px;
    background-color: green;
    position: relative;
    transition: transform 0.1s ease;
}
.site-button:active {
    transform: translate(3px, 3px);
}

