*, *::before, *::after {    /*remove unexpected defaults and be explicit with everything*/
    all: unset;
    display: revert;
    box-sizing: border-box; /* sets total size including content and padding and border; content-box is default, exlcudes padding and border */
    cursor: auto;
  }

button, input, select, textarea {
    all: revert;          
    box-sizing: border-box;
  }
* { overflow: visible !important; }

html {
    font-family: monospace;
    color: orange;
    padding: 0px;
    position: relative;
    background-color: black;
    cursor: auto;
 }

body {
    position: relative;
    margin: 7px auto;
    padding: 35px;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    /*
    */
}
body.hide_footer {
    grid-template-rows: 1fr 0.23fr 10fr 0.05fr;
    grid-template-areas:
        "header"
        "spacer"
        "middle"
        "spacer2";
}
body.hide_header {
    grid-template-rows: 0.23fr 10fr 0.05fr;
    grid-template-areas:
        "spacer"
        "middle"
        "spacer2"
        "footer"
        "lastword"
        ;
  }
.spacer {
    grid-area: spacer;
    height: 100%;
}
#version  {
   display: block;
   position: absolute; 
   z-index: 10;
   font-size: min(1.3vw, 15.6px); 
   top: min(2vw, 24px); 
   left: min(2vw, 24px); 
   color: rgb(224, 31, 163);
}
@media (max-width: 1000px) {
    #version { 
      font-size: 9px; 
      top: 0; left: 0;
    }
}


.header {
    position: relative;
    grid-area: header;
    display: flex;
      /*
      display: inline-block;
      */
    justify-content: center; 
    align-items: center;
    align-content: center;
    color: darkorange;
    font-size: 75px;
    /*
    letter-spacing: 32px;
    */
    height: 100%;
    overflow: hidden; /* stops the animation of the title from causing border size changes and flickering */
    box-sizing: none;
    /*
    margin-left: 6vw; 
    margin-right: 6vw;
    animation: breath 15s ease-in-out infinite;
    */
    background-color: black;
    margin-bottom: 20px;
}
.header span {
  display: inline-block;
  padding: 0 16px; 
}
  /*  Pause the breathing animation whenever the class .paused is present */
.header.paused {
    animation-play-state: paused;
}
/*
      @media (max-width: 1000px) { 
        #heading { font-size: 20px; }
      }
        */


#header_toggle {
  display: none;
  position: absolute;
  z-index:  99999;
  color: rgb(224, 31, 163);
  border: darkorange solid  5px;
  background-color: black;
  border-top: none;
  margin: 0;
  padding: 0;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1; 
  cursor: pointer;  
}
.parmabox {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    justify-items: center;
    width: 100%; 
    max-width: 400px;

/*    color: rgb(167, 116, 54);*/
    font-size: min(2vw, 24px); 
    letter-spacing: min(0.3vw, 6px);;
    margin: auto;
    padding: 0px;
    text-align: center;
    height: 300px;
}

.footer {    
  position: relative;
  grid-area: footer;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
      "a1 a2 a3";
  height: 100%;
}
#footer_toggle {
  display: none;
  position: absolute;
  z-index:  99999;
  color: rgb(224, 31, 163);
  border: darkorange solid  5px;
  background-color: black;
  border-top: none;
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1; 
  cursor: pointer;  
}
#builtbyparman_box {
  margin-top: 20px;
  display: block; 
  grid-area: lastword;
  width: 100%;
  height:  40px;
  bottom: 0px;
}
#builtbyparman_text { 
  display: block;
  width: 100%;
  color: rgb(59, 114, 223);
  font-size: 10px;
} 
#parmaninside { 
  display: inline-block;
  height: 30px;
  width: auto;
}

@media (max-width: 1000px) { 
 #footer_toggle {
  font-size: 12px;
}
 #header_toggle {
  font-size: 12px;
}
}

.footer.hide_footer {
  display: none !important; 
}
.header.hide_header {
  display: none !important; 
}

.footer .parmabox {
    padding: 0;
    margin-top: min(1vw, 12px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    color: darkorange;
    font-size: 20px;
    letter-spacing: unset;
    overflow: hidden;
} 
.parmabox.homeButton {
    display: flex;
    transition: all 0.3s ease-in-out;
    color: darkorange; 
    font-size: min(2vw, 24px);; 
    background-color: rgb(36, 28, 15);
    background-color: rgb(24,24,24);
    width: 27%;
}
.parmabox.homeButton:hover {
    color:black;
    background-color: rgb(167, 116, 54) !important;
}

.parmabox.homeButton:active {
  background-color: green;
  transition: all 0.3s;
}

.parmabox.homeButton.clicked {
  background-color: green;
  transform: scale(0.9);
  transition: all 0.3s;
}
/*  Breathing title animation                         */
@keyframes breath {
  0%   { transform: scale(1); }   /* start */
  50%  { transform: scale(1.15); color: rgb(28, 180, 28);}   /* peak  */
  100% { transform: scale(1); }   /* back  */
}

.hidden { display: none !important; }

@media (max-width: 1000px) { 
  .mobilehide  { 
    display: none !important; 
  }
}

select:disabled {
  pointer-events: none;
  opacity: 1;
  color: inherit;
  background-color: inherit;
  border-color: inherit;
}

