@import url(https://fonts.googleapis.com/css?family=Orbitron);



input {
    font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow",
        "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
}

#copy,
.pressable,
h1 {
    position: relative;
}

#content,
h1 {
    margin: 0 auto;
    width: 1000px;
}

.actions,
.grid-container,
.input {
    grid-template-rows: 1fr;
}

.cbx input,
label {
    float: left;
}
* {
    box-sizing: border-box;
}

.pressable:active {
    top: 1px;
    left: 1px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 20px;
    grid-template-areas: ". .";
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  
    background-color: black; /* fallback color */
    background: radial-gradient(ellipse at center, rgba(127,0,173,0.6) 0%,
      rgba(0,0,0,0.8) 60%, 
      rgba(0,0,0,1) 90%), 
      url(../image/stars.jpg);
    background-size: cover;
    background-attachment: fixed;
  
    font-family: 'Orbitron', courier, sans-serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    overflow: hidden;
    z-index: -5;
  }

input[type="text"] {
    width: 60px;
}

label {
    width: 100px;
    display: block;
}

hr {
    margin: 20px 0;
}

h1 {
    font-size: 38px;
    padding: 10px 50px;
    background: #eee;
    background: linear-gradient(to bottom, #eee 0, #ccc 100%);
    border-radius: 10px 10px 0 0;
}

.footnote {
    margin: 50px auto 20px;
    width: 800px;
    padding: 10px 50px;
    border: 1px solid #393939;
    background: #292929;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    border-radius: 10px;
    box-shadow: inset 0 0 20px 3px rgba(11, 11, 11, 0.1);
}

.footnote a {
    color: #777;
}

.footnote a:focus,
.footnote a:hover {
    color: #999;
}

#notifications {
    position: fixed;
    top: -200px;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#notifications.active {
    opacity: 1;
    top: 10px;
}
#notifications.active2 {
    opacity: 1;
    top: 10px;
}

#notifications .notification {
    width: 100%;
    padding: 20px;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 3px;
}

#notifications .notification.success {
    background-color: #ff003c;
}


#notifications .notification.fail {
    background-color: #fdacac;
}

#notifications2 .notification2.success {
    background-color: #ffee00;
}

#notifications2 .notification2.fail {
    background-color: #fdacac;
}

.options {
    border: 0;
    padding: 0;
    margin: 10px 0;
}

.options > legend {
    display: none;
}

input {
    font-size: 14px;
    padding: 3px 5px;
}

.field {
    padding: 7px 0;
}

.input {
    display: grid;
    grid-template-columns: 1fr 50px 120px;
    gap: 0 0;
    grid-template-areas: ". . .";
}

textarea#txt {
    width: 100%;
    height: 50px; /* enough for 1 row at font-size 25px + padding */
    padding: 7px;
    text-align: center;
    border: 1px solid #999;
    background: #fefefe;
    font-size: 25px;
    border-radius: 4px;
    transition: height 0.2s ease-in;
    resize: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}
#txt.copied {
    background-color: #ff003c;
}

#txt.change {
    background-color: #00ff0d;
}

#txt.notcopied {
    background-color: #fdacac;
}

#copy {
    width: 50px;
    white-space: nowrap;
    overflow: hidden;
    padding: 2px 6px;
    border: 1px solid #999;
    background: #fefefe;
    border-radius: 4px;
}

#Matrix {
    position: fixed;
    top: 0;
    left: 0;
  }

#copy:active {
    top: 1px;
    left: 1px;
}

#copy span {
    position: absolute;
    left: 100%;
}

.phrase-length {
    display: inline-grid;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    font-size: 20px;
}

#copy-to-url {
    padding-left: 45px;
    padding-right: 20px;
}

#copy-to-url svg {
    position: absolute;
    left: 10px;
    top: 8px;
    fill: #fff;
}

h2 {
    font-size: 40px;
    margin-top: 0;
    padding-top: 20px;
}

.cbx {
    width: 100%;
    overflow: hidden;
    
}

.cbx label {
    width: auto;
    margin-left: 20px;
}

.actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 20px;
    grid-template-areas: ". .";
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: none;
  background-color: var(--yellow-color);
  color: var(--black-color);
  cursor: pointer;
  padding: 20px 25px;
  position: relative;
  font-family: Tomorrow, sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
}

.button::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: -14px;
    left: -13px;
    background-color: var(--yellow-color);
    border-top: 2px solid var(--black-color);
    transform: rotate(45deg);
  }

  .button::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: -14px;
    right: -13px;
    background-color: var(--yellow-color);
    border-bottom: 2px solid var(--black-color);
    transform: rotate(45deg);
  }

.button:focus,
.button:hover {
    background: linear-gradient(to bottom, rgb(247, 246, 244) 0, #000000 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7), inset 0 0 1px #fff;
}

.button:active {
    top: 1px;
    left: 1px;
    background: linear-gradient(to bottom, #999 0, #2a2a2a 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6), inset 0 0 1px #fff;
}



@media only screen and (max-width: 1050px) {
    body {
        padding: 3px;

    }

    .animated {
        padding-left: 35px;
    }

    #content,
    .footnote {
        width: 90%;
        padding: 20px 5%;
        position: relative;
    }

    #txt {
        width: 100%;
        padding: 8px 2%;
        font-size: 18px;
        margin: 0 0 3px;
    }

    h1 {
        font-size: 18px;
        width: 90%;
        padding: 10px 0;
        margin: 0 auto;
        text-indent: 5%;
        left: 0;
        top: 0;
    }

    a {
        text-decoration:none;
        color:rgba(255, 255, 255, 0.3);
}
    h2 {
        font-size: 16px;
        padding: 0;
    }
    .input {
        grid-template-columns: 1fr 50px 100px;
    }
    .cbx label {
        width: 80%;
        margin-left: 5px;
    }
    .button {
        padding: 10px;
        width: 100%;
    }
}

@media only screen and (max-width: 700px){
    fieldset.options {
        height: 30px;
        padding-left: 15px;
        overflow: hidden;
                  
    }

    body {
        overflow: auto;
        

    }
    textarea#txt {
        font-size: 18px;
    }
    #content, .footnote {
        width: 100%;
        
      }

    .myMusic{
    display: none;
    }

    .input{
    display: inline;
   }

   #layer-0{
    display: none;
   }

   #hey {
    display:none;
   }

   #copy { 
    float: right;
   }

.phrase-length {
    display: none;   
   }

.box {
    width: 60px !important;   
  }


    fieldset.options > legend {
        cursor: pointer;
        display: block;
        font-weight: 700;    
        margin-left: -15px;
        font-size: 16px;
        color: #000000;
        padding: 2px 10px 2px 20px;
        background: linear-gradient(to bottom, #f3dc0a 0, #fffb05 100%);
        border-radius: 4px;
        border: 1px solid #2e2e2e;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 0 1px #fff;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    fieldset.options > legend::before {
        content: " + ";
        position: absolute;
        left: 32px;
        top: 2px;
        font-size: 20px;
        font-weight: 700;
    }

    fieldset.options.active {
        height: auto;
    }

    fieldset.options.active > legend::before {
        content: " - ";
        top: -3px;
    }

    fieldset.options small {
        display: none;
    }
   

}

/* Background effect */

#layer-0 {
	background: rgba(92,71,255,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(255,71,255,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(92,71,255,0)), color-stop(25%, rgba(0,0,0,1)), color-stop(100%, rgba(255,71,255,1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(255,71,255,1) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(255,71,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(255,71,255,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(255,71,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c47ff', endColorstr='#ff47ff', GradientType=0 );
	height:400px;
	width:200vw;
	opacity:1;
	position:absolute;
	bottom:0;
	left:0;
	right: 0;
	margin: 0 -50%;
	overflow: hidden;
	transform: perspective(200px) rotateX(60deg);
	z-index: -5;
}

#layer-1 {
	background: rgba(92,71,255,1);
	background: -moz-linear-gradient(45deg, rgba(92,71,255,1) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,0) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(92,71,255,1)), color-stop(50%, rgba(92,71,255,0)), color-stop(100%, rgba(92,71,255,0)));
	background: -webkit-linear-gradient(45deg, rgba(92,71,255,1) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,0) 100%);
	background: -o-linear-gradient(45deg, rgba(92,71,255,1) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,0) 100%);
	background: -ms-linear-gradient(45deg, rgba(92,71,255,1) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,0) 100%);
	background: linear-gradient(45deg, rgba(92,71,255,1) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c47ff', endColorstr='#5c47ff', GradientType=1 );
	height: inherit;
	width: inherit;
	opacity:1;
	position:absolute;
	top:0;
	left:0;
	right: 0;
	margin: auto;
	z-index: -5;
}

#layer-2 {
	background: rgba(92,71,255,0);
	background: -moz-linear-gradient(-45deg, rgba(92,71,255,0) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,1) 100%);
	background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(92,71,255,0)), color-stop(50%, rgba(92,71,255,0)), color-stop(100%, rgba(92,71,255,1)));
	background: -webkit-linear-gradient(-45deg, rgba(92,71,255,0) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,1) 100%);
	background: -o-linear-gradient(-45deg, rgba(92,71,255,0) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,1) 100%);
	background: -ms-linear-gradient(-45deg, rgba(92,71,255,0) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,1) 100%);
	background: linear-gradient(135deg, rgba(92,71,255,0) 0%, rgba(92,71,255,0) 50%, rgba(92,71,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c47ff', endColorstr='#5c47ff', GradientType=1 );
	height: inherit;
	width: inherit;
	opacity:1;
	position:absolute;
	top:0;
	left:0;
	right: 0;
	margin: auto;
	z-index: -5;
}

#layer-corner {
	background: rgba(71,255,203,1);
	background: -moz-linear-gradient(top, rgba(71,255,203,1) 0%, rgba(96,130,223,0) 54%, rgba(117,24,240,0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,255,203,1)), color-stop(54%, rgba(96,130,223,0)), color-stop(100%, rgba(117,24,240,0)));
	background: -webkit-linear-gradient(top, rgba(71,255,203,1) 0%, rgba(96,130,223,0) 54%, rgba(117,24,240,0) 100%);
	background: -o-linear-gradient(top, rgba(71,255,203,1) 0%, rgba(96,130,223,0) 54%, rgba(117,24,240,0) 100%);
	background: -ms-linear-gradient(top, rgba(71,255,203,1) 0%, rgba(96,130,223,0) 54%, rgba(117,24,240,0) 100%);
	background: linear-gradient(to bottom, rgba(71,255,203,1) 0%, rgba(96,130,223,0) 54%, rgba(117,24,240,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47ffcb', endColorstr='#7518f0', GradientType=0 );
	height: inherit;
	width: inherit;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -5;
	animation: layercorneranim 2.5s ease-in-out infinite alternate;	
}

#hey {
	width: 100%;
	background-color: #011;
	position: absolute;
	bottom: 253px; right: 0; left: 0;
	margin: auto;
	z-index: -10;
	transform: perspective(200px);
}

#layer-up {
	background: rgba(71,255,203,0);
	background: -moz-linear-gradient(top, rgba(71,255,203,0) 0%, rgba(71,255,203,0) 50%, rgba(71,255,203,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,255,203,0)), color-stop(50%, rgba(71,255,203,0)), color-stop(100%, rgba(71,255,203,1)));
	background: -webkit-linear-gradient(top, rgba(71,255,203,0) 0%, rgba(71,255,203,0) 54%, rgba(71,255,203,1) 100%);
	background: -o-linear-gradient(top, rgba(71,255,203,0) 0%, rgba(71,255,203,0) 50%, rgba(71,255,203,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,255,203,0) 0%, rgba(71,255,203,0) 50%, rgba(71,255,203,1) 100%);
	background: linear-gradient(to bottom, rgba(71,255,203,0) 0%, rgba(71,255,203,0) 50%, rgba(71,255,203,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47ffcb', endColorstr='#47ffcb', GradientType=0 );
	height:300px;
	width: inherit;
	opacity: 1;
	position: absolute;
	bottom:0; left:0; right: 0; margin: auto;
	overflow: hidden;
	z-index: -5;
	animation: layerupanim 2.5s ease-in-out infinite alternate;	
}

#lines {
    background-size: 40px 40px;    
    background-image: repeating-linear-gradient(0deg, #60DCD3, #60DCD3 2px, transparent 1px, transparent 40px),repeating-linear-gradient(-90deg, #60DCD3, #60DCD3 2px, transparent 2px, transparent 40px);
    height:400px;
    width:100%;
    opacity:1;
    position:absolute;
    top:0;
    left:0;
    z-index:-4;
}

#mtn {
	background-color: purple;
	height:300px;
	width:1200px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -8;
	transform: perspective(600px);
}

@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF11A7, 0 0 70px #FF11A7, 0 0 80px #FF11A7, 0 0 100px #FF11A7, 0 0 150px #FF1177;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF11A7, 0 0 35px #FF11A7, 0 0 40px #FF11A7, 0 0 50px #FF11A7, 0 0 75px #FF11A7;
  }
}

@keyframes layerupanim
{
	from {
		height: 140px;
	}
	to {
		height: 155px;
	}
}

@keyframes layercorneranim
{
	from {
		height: 400px;
	}
	to {
		height: 540px;
	}
}

.box {
    width: 50px;
    height: 30px;
    border: 1px solid #999;
    font-size: 18px;
    color: #000000;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;    
  }

  input.largerCheckbox {
    width: 25px ;
    height: 25px ;
}

.field label {
    display: block;
    line-height: 200%;
    
}
  