.code {
    color: #CCCCCC;
    display: block;
    padding: 20px;
    background-color: #1F1F1F;
}

.token.comment {
    color: #6A9955;
}

.token.keyword {
    color: #C586C0
}

.token.class {
    color: #4EC9B0;
}

.token.variable {
    color: #9CDCFE;
}

.token.number {
    color: #B5CEA8;
}

.token.function {
    color: #DCDCAA;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

:root {
  --smaller: 5px;
  --small: 10px;
  --medium: 20px;
  --large: 30px;
  --larger: 40px;
}

.flex-vertical {
  display: flex;
  flex-direction: column;
}

.flex-horizontal {
  display: flex;
  flex-direction: row;
}

.flex-spacer {
  flex: 1;
}

html {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

body {
  padding: var(--medium);
  min-width: 0px;
}

@media (min-width: 768px) {
  body {
    width: 60%;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
}

.gap-small {
  gap: var(--smaller);
}

.gap-medium {
  gap: var(--medium);
}

.gap-large {
  gap: var(--large);
}

.gap-larger {
  gap: var(--larger);
}

.padding-small {
  padding: var(--smaller);
}

.padding-medium {
  padding: var(--medium);
}

.padding-large {
  padding: var(--large);
}

.padding-larger {
  padding: var(--larger);
}

.space-between {
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

.white {
  color: white;
}

.menu-ul {
  color: var(--bs-primary);
  background-color: white;
  padding: var(--small) var(--medium);
  border-radius: var(--small);
  border: 1px solid var(--bs-primary);
}

.menu-ul > li.separator {
  width: 1px;
  height: 1.5rem;
  background-color: var(--bs-primary);
}

.joke {
  color: var(--bs-secondary);
}

@media (max-width: 767px) {
  .menu-ul {
    justify-content: center;
  }
  .logo {
    width: 2cm !important;
  }
  #andy-header {
    flex-direction: column;
  }
  #andy-header > .flex-vertical {
    align-items: center;
  }
  #andy-header > .flex-vertical > h3 {
    text-align: center;
  }
  #joke {
    text-align: center;
    min-height: 3rem;
  }
}

@media (max-width: 575px) {
  .menu-ul > li {
    font-size: 15px;
  }
}

.release-notes > li {
  list-style-type: disc;
  margin-left: 1rem;
}

.CodeMirror {
  flex: 1;
  height: unset !important;
}

.primary-color {
  color: var(--bs-primary);
}

.primary-link {
  color: var(--bs-primary);
  text-decoration: underline;
  font-weight: bolder;

}
