@font-face {
    font-family: fancy; /* set name */
    src: url(fonts/teutonic3.ttf); /* url of the font */
  }
  @font-face {
    font-family: simple; /* set name */
    src: url(fonts/Warsuck.ttf); /* url of the font */
  }
  
header{
    text-align: center;
    margin-top:4em;
    color: #fff;
    text-shadow: 0 0 5px ff65db;
}
header div{
    font-size: 1.75em;
}
header p {
    font-size: 1em;
    margin-bottom: 0;
}
header h1 {
    margin-top: 0;
    font-size: 5em;
}
#space{
    top: 0;
    left: 0;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: -100;
}
#starcontainer{
    top: 0;
    left: 0;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: -10;
}

star {
    height: 15px;
    width: 15px;
    position: absolute;
    background: url("../img/star1.png");
    filter:drop-shadow(0px 0px 6px pink);
}
star#progenitor {
    top: 1.5em;
    left: calc(50vw - 7px);
}
star.generated {
  animation-name: twinkle;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
@keyframes twinkle {
  to {opacity:.25}
}
.simple{
    font-family: simple;
}
.fancy { 
    font-family: fancy;
}



/* debug */

#debug {
    text-align: center;
    color: #fff;
}

.slider { 
    width: 90vw;
    position: relative;
    margin: auto;
    appearance: none;
    border-radius: 5px; 
    height: 5px;
    background-image: repeating-linear-gradient(to right,#fff,#fff.8%, #000 1%,#fff 1.2%, #fff 4.28%);
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background: #f00;
  }
  .hours{
    width: 92.5vw;
    margin:10px auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  .hours div{
    flex: 1;
  }
  .hex{
    width: 90vw;
    margin: 50px auto ;
  }
  .hex br {
    margin-bottom: 15px;
  }
  .hex morning,
  .hex day,
  .hex evening,
  .hex night {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5px;
  }
  .hex div {
    flex: 1;
  }

  .hex input {
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    width: 17.5%;
    background-color: transparent;
    border: 1px solid #ffffff55;
    text-align: center;
  }
