@charset 'UTF-8';
:root {
  --greyishMagenta: #baaabb;
  --darkBlue: #0d1117;
}

/********************************************************************************
/* Dark Mode                                                                     
/*********************************************************************************/

.dark {
  color: var(--greyishMagenta);
  background-color: var(--darkBlue);
}

.dark strong, .dark b, .dark a, .dark input, .dark #copyright ul, .dark h1, .dark form label, .dark ::placeholder, .dark textarea {
  color: var(--greyishMagenta);
}

.dark form input {
  background-color: #222;
  box-shadow: inset 0px 0px 1px 0px #000000;
}

.dark form input:focus {
  background: var(--darkBlue);
}

html {
  scroll-behavior: smooth;
}

body, input, textarea, select, .label {
  font-family: arial, sans-serif;
  font-weight: 400;
  color: #666666;
}

.timerlabel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#IntervalLabel {
  font-size: 2em;
  margin: 1em 0;
}

.interval {
  font-family: monospace;
  font-size: 30vw;
}

progress {
  height: 3em;
  display: flex;
  width: 80vw;
  max-width: 800px;
  opacity: 0.5;
}

button, button.label, button.button.label {
  color: #FFFFFF;
}

/* Button */

input[type="button"], input[type="submit"], input[type="reset"], .button {
  padding: 0 2.25em 0 2.25em;
  font-size: 0.9em;
  min-width: 12em;
  height: 4em;
  line-height: 4em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-size: 100%;
  color: #484d55;
  padding: 0 0 0 1em !important;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

p, ol, dl, table, blockquote, form
/*removed margin from navbar ul*/

  {
  margin-bottom: 2em;
}

/* Form */

form {
  margin: 0em;
}

/* Gray */

form label {
  display: block;
}

form input, form select, form textarea {
  height: 3em;
  -webkit-appearance: none;
  display: block;
  border: 0;
  background: #eee;
  box-shadow: inset 0px 0px 1px 0px #a0a1a7;
  border-radius: 0.35em;
  width: 100%;
  padding: 0.75em 1em 0.75em 1em;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  line-height: 1em;
}

form input:focus {
  background: #f8f8f8;
}

::placeholder {
  font-style: italic;
  line-height: 1.35em;
  opacity: 0.8;
}

/* Section/Article */

section, article {
  margin-bottom: 1em;
}

input[type="button"], input[type="submit"], input[type="reset"], .button {
  display: inline-block;
  background: #444;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-decoration: none;
  border-radius: 0.35em;
  border: 0;
  outline: 0;
  cursor: pointer;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

input[type="button"]:is(:hover, :focus), input[type="submit"]:is(:hover, :focus), input[type="reset"]:is(:hover, :focus), .button:is(:hover, :focus) {
  box-shadow: 0 0 8pt 2pt #800080;
}

input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active, .button:active {
  background-color: #1f232b;
}

#header {
  position: relative;
}

/********************************************************************************
/* Content                                                                       
/*********************************************************************************/

#content {
  padding: 0 0 2em 1em;
}

/* Grid */

.row {
  margin: -20px 0 -1px -20px;
}

.row>* {
  float: left;
  padding: 20px 0 0 20px;
}

.row:after, .row:before {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

@media screen and (max-width: 700px) {
  /*********************************************************************************/
  /* Header                                                                        */
  /*********************************************************************************/
  #header {
    padding: 4em 0 0 0;
  }
}

/********************************************************************************
/* Copyright                                                                    
/*********************************************************************************/

#copyright {
  text-align: center;
}

#copyright ul {
  display: inline-block;
  border-radius: 0.35em;
  box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.15);
  color: #000;
  color: rgba(0, 0, 0, 0.95);
}

/********************************************************************************
/*    Dark Mode Toggle                                                        
/*********************************************************************************/

/* The switch - the box around the slider */

.switch {
  position: absolute;
  /*relative;*/
  right: 69px;
  top: 12px;
  display: inline-block;
  width: 52px;
  height: 20px;
}

.switch:focus-within {
  box-shadow: 0 0 20pt 0pt;
  border-radius: 34px;
}

.toggLabel {
  position: absolute;
  right: 60px;
  top: 30px;
  display: inline-block;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  /*left: 4px;*/
  bottom: -3px;
  background-color: #f1f1f1;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #800080;
}

input:focus+.slider {
  box-shadow: 0 0 1px #800080;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color: #ca5eca;
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/********************************************************************************
/* Desktop style                                                                 
/*********************************************************************************/

@media screen and (min-width: 850px) {
  body, input, select, textarea {
    font-size: 11pt;
    line-height: 1.75em;
    letter-spacing: 0.025em;
  }
  .interval {
    font-size: 10em;
  }
  /* Section/Article */
  section, article {
    margin: 0 0 1em 0;
    padding: 0 0 0 4em !important;
  }
  /* Form */
  form {
    padding: 1em 0 1em 1em !important;
  }
  form label {
    margin: 0.25em 0 0.5em 0;
  }
  /*********************************************************************************/
  /* Logo                                                                          */
  /*********************************************************************************/
  #logo {
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    margin-top: 1em;
  }
  #logo h1 {
    font-size: 2em;
    letter-spacing: 0.25em;
  }
  /*********************************************************************************/
  /* Main                                                                          */
  /*********************************************************************************/
  #main {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  /* Container */
  .container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
  }
  /*********************************************************************************/
  /* Copyright                                                                     */
  /*********************************************************************************/
  #copyright {
    margin: 6em 0 0 0;
  }
  #copyright ul {
    padding: 0.75em 2em;
    font-size: 0.9em;
  }
  #copyright ul li {
    display: inline-block;
    margin-left: 1em;
    padding-left: 1em;
    border-left: solid 1px #333;
    border-left-color: rgba(255, 255, 255, 0.05);
  }
  #copyright ul li:first-child {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
  }
}

/********************************************************************************
/* Mobile  style                                                                 
/*********************************************************************************/

@media screen and (max-width: 850px) {
  /*********************************************************************************/
  /* Basic                                                                         */
  /*********************************************************************************/
  body, input, select, textarea {
    line-height: 1.5em;
    font-size: 9pt;
    letter-spacing: 0;
  }
  /* Section/Article */
  section, article {
    padding: 1em 1em 0 !important;
  }
  /*********************************************************************************/
  /* Logo                                                                          */
  /*********************************************************************************/
  #logo {
    text-align: center;
  }
  #logo h1 {
    font-size: 1.5em;
    letter-spacing: 0.2em;
  }
  #main {
    padding: 1em 0 0 0;
  }
  /*********************************************************************************/
  /* Copyright                                                                     */
  /*********************************************************************************/
  #copyright {
    padding: 2em 0 0 0;
  }
  #copyright ul {
    padding: 1em 2em;
    width: 100%;
  }
  #copyright ul li {
    display: block;
    margin: 0.5em 0 0 0;
  }
  #copyright ul li:first-child {
    margin-top: 0;
  }
}

/* Box Model */

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-family: arial, sans-serif;
  vertical-align: baseline;
}