
:root { 
  --color-bg: #; 
  --color-text-main: #000000;
  --color-text-header: #f5e324;
  --color-primary: #FFFF00;
  --font-family: 'Courier', monospace;
  
  /* ADDED FROM PANES TUTORIAL*/
  
  --title-bar-height: 32px;


  --pane-default-width: 320px;
  --pane-default-height: 360px;
  --pane-border-radius: 8px;
}

body {
  background-color: #e3e3e3;
    /* if outside of the window, clip */
  height: 100vh;
  overflow: clip;
   background-image: url(/assets/lab-cynn/court-bg.png);
}

    .descrip-box {
      position: absolute;
      top: 2em;
      right: 2em;
      width: 26em;
      border: solid 1.5px #000000;
      background-color: #ffffff;
      padding: .5em;
      max-height: 6em;
    }
    .descrip-text {
      font-family:'Courier New', Courier, monospace;
      margin: 1em 0;
    }
    .linebr {
      width: 100%;
      border: dotted 2px #000000;
    }
    .des-links {
      display: flex;
    }
    .des-links .descrip-text p {
      margin-right: 15px;
    }

/******************************************************************************
                    PANES TUTORIAL
******************************************************************************/

.pane {
  background-color: #e3e3e3;
  position: absolute;
  width: var(--pane-default-width);
  height: var(--pane-default-height);
  border: 4px solid #000000;
  overflow: clip;
  min-width: 160px;
  min-height: 160px;
  border-radius: 8px;
}

.pane .title {
  height: var(--title-bar-height);
  cursor: move;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E3E3E3;
}

.pane .title h2 {
  margin: 0;
}

.pane .content {
  position: relative;
  overflow-y: scroll;
  margin-right: 20px;
  margin-left: 20px;
}

.panetext {
  margin: .25em;
  background-color: #F0F1C0;
  padding: 15px;
  position: relative;
  border-top: 4px solid #000000;
  border-right: 4px solid #000000;
  border-bottom: 4px solid #000000;
  border-left: 4px solid #000000;
  margin-right: .5em;
}

.opener {
  font-size: 1.1em;
}

.panetext ul li {
  padding: 10px;
}

/* add a corner in bottom right */
.pane .corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  /* north west to south east */
  cursor: nwse-resize;
}

.corner-img {
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
 



/* Button - Add it from the README instructions */
button,
input {
  font-family: inherit;
  font-size: 100%;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: 500ms;
}

.dipped {
  transform: translateY(5px);
}




