body {
  margin: 0;
  padding: 0;
  font-family: Arial,Helvetica,sans-serif;
  background: #C2DBEA;
  background: radial-gradient(rgba(42,103,141,0), rgba(42,103,141,1));
  background-color: #8e8e8e;
}
/* Web page header with counter and language switch */
.head {
  position: fixed;
  top: 0;
  left: calc(calc(100% - 768px) / 2);
  width: 768px;
  height: 36px;
  margin: 0;
  padding: 0;
  background-image:url('../images/stars.jpg');
  background-repeat: repeat-x;
  z-index: 1500;
}
/* Web page header */
.h1 {
  position: relative;
  float: left;
  width: 425px;
  height: 36px;
  margin: 0;
  padding-left: 6px;
  text-align: left;
  color: #fde7be;
  font: bold 1.6em arial, helvetica, sans-serif;
  font-style: italic;
}
/* Web page counter */
.counter-container {
  position: relative;
  float: left;
  left: 0;
  width: 156px;
  height: 36px;
  margin: auto 0;
  padding: 0;
  padding-left: 6px;
  background-color: rgba(255,255,255,0);
  color: white;
  z-index: 1500;
}
.counter {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 144px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0);
  border-radius: 5px;
}
.digit-list {
  display: flex;
  padding: 0;
  list-style: none;
}
.digit {
  display: flex;
  justify-content: center;
  width: 22px;
  height: 26px;
  background-image: url(../images/button1.gif);
  border: 1px solid #999999;
  border-radius: 8px;
  font-size: 22px;
  padding: 0;
  margin-right: 1px;
}
/* Web page language switch */
.language-container {
  position: relative;
  float: right;
  width: 158px;
  height: 36px;
}
.language-button {
  position: relative;
  float: right;
  display: block;
  width: 64px;
  line-height: 28px;
  margin-top: 3px;
  border: 1px outset;
  border-color: #cccccc #888888 #555555 #bbbbbb;
  background-image: url('../images/button2.gif');
  font-size: 0.6em;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}
button.language-button:hover {
  border: 1px inset #ffffff;
  color: #ffcc00;
}
/* Web page menu */
.menu {
  /* define the height of the menu */
  --menu-height: 36px;
  --link-height: 16px;
  /* holder and ul general style */
  position: fixed;
  top: 36px;
  left: calc(calc(100% - 768px) / 2);
  width: 768px;
  height: var(--menu-height);
  line-height: var(--menu-height);
  box-sizing: border-box;
  font-size: 0.7em;
  z-index: 1500;
  ul {
    list-style: none;
    margin: 0;
    li, li a {
      text-align: center;
      color: #ffffff;
      cursor: pointer;
      transition: 200ms;
      text-decoration: none;
      white-space: normal;
      font-weight: bold;
      width: 126px;
      &:hover {
        color: #ffcc00;
      }
      li a {
        text-align: left;
        display: flex;
      }
    }
    /* lets put an arrow down to the li`s with dropdown */
    .down::before {
      content: '';
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 5px solid #3ae432;
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
    }
    .link {
      /* links dont need arrow */
      &::before {
        padding-right: 0;
        display: none;
      }
    }
    ul li {
      height: auto;
      text-align: left;
      line-height: var(--link-height);
    }
  }
  /* the first ul inside the container is the menu,
     so must be visible and have its own style */
  > ul {
    display: flex;
    padding: 0;
    height: 100%;
    /* the first ul elements can be a link or an li with a nested ul.
       the nested ul will be a dropdown */
    li {
      position: relative;
      width: 126px;
      border: 1px outset #fff;
      background-image: url('../images/button1.gif');
      background-size: contain;
      /* the dropdown style */
      ul {
        visibility: hidden;
        opacity: 0;
        padding: 0;
        position: absolute;
        top: 100%;
        transition: 200ms;
        transition-delay: 200ms;
        li a {
          color: #aa0000;
        }
        li a:hover {
          color: #000;
        }
        /* the dropdown items style */
        li {
          min-width: 126px;
          margin: 0;
          padding: 4px 6px;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          background-color: #efefef;
          background-image: none;
          border:1px solid #000;
          color: #aa0000;
          /* every dropdown after the first must open to the right */
          ul {
            top: -2%;
            left: 100%;
            transform: translate(0)
          }
          &:hover {
            background-color: #fff;
            color: #000;
            border:1px solid #000;
          }
        }
      }
      /* on hover an li (not an <a>) must show its ul (dropdown) */
      &:hover {
        border: 1px inset #fff;
        > ul {
          opacity: 1;
          visibility: visible;
          transition-delay: 0ms;
        }
      }
    }
    li a {
      display: block;
    }
  }
}
.menu ul li ul li ul li ul li {
  width: 310px;
  padding: 4px 4px;
}
.menu ul li ul li ul li ul li a {
  width: 310px;
  display: block;
  text-align: left;
  white-space: normal;
  padding: 4px 4px;
  margin: 0;
}
/* Web page splash image */
.splash-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 72px auto 0;
  padding: 0;
  text-align: center;
}
/* Logo of the Universe tickets site */
.logo {
  position: fixed;
  top: 300px;
  left: calc(calc(calc(100% - 768px) / 2) + 10px);
  margin: 0;
  padding: 0;
  width: 113px;
  height: 40px;
  border-radius: 3px;
}
.logo img {
  border-radius: 3px;
  width: 114px;
  height: 40px;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.9);
}
.logo img:hover {
  transition: box-shadow 0.2s ease-out;
  filter: brightness(80%) hue-rotate(35deg);
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.9) inset;
}
/* Web page text */
.text-container {
  position: relative;
  display: block;
  width: 736px;
  height: 100%;
  padding: 16px;
  margin: 72px auto 0;
  text-align: center;
  border: 1px solid #000;
  background: transparent url(../images/paper01.jpg);
  background-repeat:no-repeat;
  background-attachment:fixed;
}
img.float-middle {
  padding: 4px 0px 0px;
  width: 32px;
}
img.float-left {
  margin: 0 8px 0 0;
  float: left;
-ms-interpolation-mode: bicubic;
  max-width: 384px;
  max-height: 197px;
}
/* Donation splash page */
.gofundme-button {
  transition-duration: 0.4s;
  position: absolute;
  left: 40.5%;
  top: 48.4%;
  width: 18%; 
  height: 3.2%;
  background-color: #6a131a;
  border-radius: 18px;
  border: 1px solid #fff; 
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.9), 0 6px 20px 0 rgba(0,0,0,0.63);
  display: flex;
  justify-content: center;
  align-items: center;
} 
.gofundme-button:hover {
  background-color: coral;
} 
.youtube-button {
  transition-duration: 0.4s;
  position: absolute;
  left: 40.5%;
  top: 52.4%;
  width: 18%;
  height: 3%;
  background-color: #6a131a;
  border-radius: 18px;
  border: 1px solid #fff;
  padding: 3px 0 0 0;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.9), 0 6px 20px 0 rgba(0,0,0,0.63);
  display: flex;
  justify-content: center;
  align-items: center;
}
.youtube-button:hover {
  background-color: coral;
}
/* YouTube videos */
.stage, .stage1 {
  border: 2px solid #000;
  margin: 0 auto;
  padding: 16px;
  background-repeat:no-repeat;
  width: 736px;
}
.stage {
  background: transparent url(../images/stage_curtain.jpg);
}
.stage1 {
  background: transparent url(../images/stage_curtain1.jpg);
}
