body { 
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* border-radius: 10px 10px 10px 10px; */
 }

 .text{
    color: black;
 }

 .indent{
    color: black;
    text-indent: 10px;
 }

.snippet{
  text-indent: 10px;
  background-color: #e9daa1;
  border-radius: 10px;
  padding: 5px;
  width: 80%;
  left: 20%;
}

#gitlnk{
  width: 15;
  height: 15;
}

#demo{
  margin-bottom: 20px;
}

#video{
  border-radius: 10px;
}

#unity-container { position: relative;}
#unity-container.unity-mobile { position: fixed; width: 100%; height: 100% }
#unity-canvas { 
    position: relative;
    background: #231F20;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo {width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
#unity-footer { position: relative ; padding-top: 20px; padding-bottom: 60px;}
.unity-mobile #unity-footer { display: none }
#unity-logo-title-footer {position: relative;left: 18%; width: 102px; height: 38px; background: url('unity-logo-title-footer.png') no-repeat center }
#unity-fullscreen-button {
  position: relative;
  cursor:pointer;
  left: 80%;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center;
  transform: translateY(-35px);
}
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

/*Collapsed*/
.collapsible {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  margin-bottom: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 10px;
}

/*Hover*/
.active, .collapsible:hover {
  background-color: #000000;
  color: rgb(255, 255, 255);
  border-radius: 10px;
}

/*Expanded*/
.content {
  padding: 0 18px;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  color: #000000;
  border-radius: 10px;
}

/* CSS */
#ganglion {
    position: static;
    width: 150px;
    height: 15px;
    appearance: none;
    background-color: #000000;
    border: 2px solid #000000;
    border-radius: 15px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

#ganglion:disabled {
    pointer-events: none;
}

#ganglion:hover {
    color: #fff;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

#ganglion:active {
    box-shadow: none;
    transform: translateY(0);
}

#page-footer{
  color: #838383;
  text-align: center;
}