@import url('https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,CASL,CRSV,MONO@-15..0,300..1000,0..1,0..1,0..1&display=block');
@import url("https://fonts.googleapis.com/css2?family=Truculenta:opsz,wdth,wght@12..72,75..125,100..900&display=block");
@import url("https://fonts.googleapis.com/css2?family=Saira:wdth,wght@50..125,100..900&display=block");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=block");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,100..900,0..100,0..1&display=block");
@import url("https://fonts.googleapis.com/css2?family=Alegreya:wght@400..900&display=block");
@import url("https://fonts.googleapis.com/css2?family=Grenze%20Gotisch:wght@100..900&display=block");
@import url("https://fonts.googleapis.com/css2?family=Lemonada:wght@300..700&display=block");
@import url("https://fonts.googleapis.com/css2?family=Sansita%20Swashed:wght@300..900&display=block");


@font-face{
    font-family: 'Sansita Swashed';
    font-weight: 300 900;
    font-style: normal;
}
@font-face {
    /*
	Bandeins Strange
	http://type.bandeins.de/
	This free font is for demonstration purposes only. You may not distribute, rent, sell, give away, publicly or privately share any modified or unmodified version of the font. Special permission has been granted to crosslink to it for demo purposes only. You must obtain an appropriate license at <http://type.bandeins.de/> before linking to this font or using it in any other context.
	*/
    font-family: 'Bandeins-Strange';
    src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/61488/BandeinsStrangeVariableGX.ttf') format('truetype');
    font-stretch: 100% 800%;
    font-weight: 200 800;
    font-display: block;
}

@font-face {
    font-family: "Truculenta";
    font-weight: 100 900;
    font-variation-settings: 'wdth' 75, 'opsz' 50;
}

@font-face {
    font-family: 'movementregular';
    src: url('https://explorevari.com/fontKit/movementv-webfont.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Recursive';
    font-style: normal;
    font-weight: 300 900;
}
@font-face {
    font-family: 'Lemonada';
    font-style: normal;
    font-weight: 300 700;
}
@font-face {
    font-family: 'Grenze Gotisch', cursive;
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Alegreya';
    font-style: normal;
    font-weight: 400 700;
}

@font-face {
    font-family: 'Saira';
    font-display: block;
    font-style: normal italic;
    font-weight: 100 900;
    font-stretch: 10% 400%;
}

@font-face {
    font-family: 'Caveat';
    font-display: block;
    font-style: normal;
    font-weight: 400 700;
}

@font-face {
    font-family: 'Fraunces';
    font-display: block;
    font-style: normal;
    font-weight: 100 900;
    font-variation-settings: 'SOFT' 100;
}

:root {
    --varColor: #556B2F;
    --varTextColor: pink;
    --varFont: 'Alegreya', serif;
    --varSize: 10rem;
    --varWeight: 100;
    --deg: 0deg;
    --myWeight: 100;

    --wghtAxis: 100;
    --opszAxis: 9;
    --softAxis: 0;
    --wonkAxis: 0;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 1vmin;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Recursive", sans-serif;
}
/*nav stuff*/
.about a, .learn a, .portfolio a, .explore a{
    text-decoration:none;
    color:black;
    font-size: 15px;
}
.about{
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px 0 20px 30px;
    z-index:1;
}
.learn{
    position: absolute;
    top: 0;
    left: 75px;
    margin: 20px 0 20px 30px;
    z-index:1;
}
.explore{
    position: absolute;
    top: 0;
    right: 115px;
    margin: 20px 30px 20px 0;
    z-index:1;
}
.portfolio{
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 30px 20px 0;
    z-index:1;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}

.container {
    width: 100%;
    height: 100%;
    display: grid;
    margin-top: 5%;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    justify-content: space-around;
    grid-auto-flow: row dense;
}

/*Grid Box 1*/
.box1 {
    grid-column: span 3;
    height: 500px;
    background-color: white;
    border: 2px black solid;
    position: relative;
}

.box1:hover {
    background-color: pink;
}

.lettersToSpin, .lettersToSpin2 {
    line-height: 0.5;
    transform-style: preserve-3d;
    height: 100%;
    color: white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.one {
    font-weight: 900;
}

.box1:hover .one {
    text-shadow: none;
    color: #145277;
}

.two {
    font-weight: 800;
}

.box1:hover .two {
    text-shadow: none;
    color: #2a6b88;
}

.three {
    font-weight: 700;
}

.box1:hover .three {
    text-shadow: none;
    color: #408499;
}

.four {
    font-weight: 600;
}

.box1:hover .four {
    text-shadow: none;
    color: #579ea9;
}

.five {
    font-weight: 500;
}

.box1:hover .five {
    text-shadow: none;
    color: #6db7ba;
}

.six {
    font-weight: 400;
}

.box1:hover .six {
    text-shadow: none;
    color: #83d0cb;
}

.p {
    margin: 0;
    position: absolute; /*stacks the letters on top of each other */
    font-size: 25rem;

    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/*Pen originally forked from Nathan Taylor*/
@-webkit-keyframes spin2 {
    0% {
        transform: rotateX(30deg) rotatez(0deg);
    }
    100% {
        transform: rotateX(10deg) rotatez(-360deg);
    }
}

@keyframes spin2 {
    0% {
        transform: rotateX(30deg) rotatez(0deg);
    }
    100% {
        transform: rotateX(10deg) rotatez(-360deg);
    }
}

.p:nth-child(1) {
    transform: translate3d(-50%, -50%, 5rem);
}

.p:nth-child(2) {
    transform: translate3d(-50%, -50%, 10rem);
}

.p:nth-child(3) {
    transform: translate3d(-50%, -50%, 15rem);
}

.p:nth-child(4) {
    transform: translate3d(-50%, -50%, 20rem);
}

.p:nth-child(5) {
    transform: translate3d(-50%, -50%, 25rem);
}

.p:nth-child(6) {
    transform: translate3d(-50%, -50%, 30rem);
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* easeInOutSine */
.span,
.spinner, .spinner2 {
    position: relative;
    display: inline-block;
    transform-origin: 50% 30%;
}

.spinner, .spinner2 {
    -webkit-animation: spin 10s infinite linear;
    animation: spin 10s infinite linear;
}

.p:nth-child(1) .spinner {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.p:nth-child(2) .spinner {
    -webkit-animation-delay: -1.6s;
    animation-delay: -1.6s;
}

.p:nth-child(3) .spinner {
    -webkit-animation-delay: -2.4s;
    animation-delay: -2.4s;
}

.p:nth-child(4) .spinner {
    -webkit-animation-delay: -3.2s;
    animation-delay: -3.2s;
}

.p:nth-child(5) .spinner {
    -webkit-animation-delay: -4s;
    animation-delay: -4s;
}

.p:nth-child(6) .spinner {
    -webkit-animation-delay: -4.8s;
    animation-delay: -4.8s;
}

.box2 {
    grid-column: span 5;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.box2:hover {
    background-color: var(--varColor);
}

.box2 form {
    font-family: var(--varFont), monospace;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1em;
    width: 95%;
}

.box2 input::placeholder {
    color: white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.box2 #typeHere {
    line-height: 1.3;
    width: 90%;
    border: none;
    text-decoration: none;
    border-bottom: 5px solid black;
    font-size: var(--varSize);
    font-variation-settings: 'wght' var(--varWeight);
    margin: 20px;
    transform: rotate(var(--deg));
}

.box2:hover #typeHere {
    border-bottom-color: var(--varTextColor);
    color: var(--varTextColor);;
    background-color: var(--varColor);
}

.box2:hover input::placeholder {
    text-shadow: none;
    color: var(--varTextColor);;
}

.box2 #btn {
    text-align: center;
    border: 2px solid black;
    color: black;
    background-color: white;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-block;
    position: absolute;
    margin-right: 6%;
    font-size: 16px;
    right: 0;
}

.box2:hover #btn {
    border: none;
    color: var(--varColor);
    background-color: var(--varTextColor);;
}

.box2 input:focus, select:focus {
    outline: none;
}

/*.box3{*/
/*grid-column: span 2;*/
/*height:500px;*/
/*border: 2px black solid;*/
/*background-color: white;*/
/*}*/

/*.box3:hover{*/
/*background-color: #ee7752;*/
/*}*/

/*Adapted a pen by Séan Mongey*/
.box4 {
    grid-column: span 5;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    font-family: "Truculenta", sans-serif;
    font-size: 5rem;
    overflow: hidden;
}

.box4:hover {
    background-color: #ef5b5b;
}

.box4:hover, .box4:hover * {
    color: #5e4ae3;
    text-shadow: none;
}

.single {
    color: white;
    position: relative;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.single span {
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 1.5vw;
}

.single span:nth-child(1) {
    animation: first 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
}

.single span:nth-child(2) {
    animation: second 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
    transform: translateX(100%);
}

.single span:nth-child(3) {
    animation: third 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
    transform: translateX(200%);
}

.single span:nth-child(4) {
    animation: fourth 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
    transform: translateX(300%);
}

.box4 {
    display: grid;
}

.box4 .single:nth-child(1) span {
    animation-delay: 0.06s;
}

.box4 .single:nth-child(2) span {
    animation-delay: 0.12s;
}

.box4 .single:nth-child(3) span {
    animation-delay: 0.18s;
}

.box4 .single:nth-child(4) span {
    animation-delay: 0.24s;
}

.box4 .single:nth-child(5) span {
    animation-delay: 0.3s;
}

.box4 .single:nth-child(6) span {
    animation-delay: 0.36s;
}

.box4 .single:nth-child(7) span {
    animation-delay: 0.42s;
}

.box4 .single:nth-child(8) span {
    animation-delay: 0.48s;
}

.box4 .single:nth-child(9) span {
    animation-delay: 0.54s;
}

.box4 .single:nth-child(10) span {
    animation-delay: 0.6s;
}

.box4 .single:nth-child(even) {
    transform: translateX(50%);
}

@keyframes first {
    0%, 100% {
        font-variation-settings: "wght" 100, "wdth" 75;
        left: 0%;
        transform: translateX(5%);
    }
    25% {
        font-variation-settings: "wght" 450, "wdth" 100;
        left: 5%;
        transform: translateX(-5%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-300%);
    }
    75% {
        font-variation-settings: "wght" 450, "wdth" 100;
        left: 0%;
        transform: translateX(0%);
    }
}

@keyframes second {
    0%, 100% {
        font-variation-settings: "wght" 300, "wdth" 75;
        left: 0%;
        transform: translateX(66.7%);
    }
    25% {
        font-variation-settings: "wght" 600, "wdth" 100;
        left: 33.3%;
        transform: translateX(-33.3%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-225%);
    }
    75% {
        font-variation-settings: "wght" 600, "wdth" 100;
        left: 33.3%;
        transform: translateX(-33.3%);
    }
}

@keyframes third {
    0%, 100% {
        font-variation-settings: "wght" 500, "wdth" 75;
        left: 0%;
        transform: translateX(133.3%);
    }
    25% {
        font-variation-settings: "wght" 700, "wdth" 100;
        left: 66.7%;
        transform: translateX(-66.7%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-175%);
    }
    75% {
        font-variation-settings: "wght" 700, "wdth" 100;
        left: 66.7%;
        transform: translateX(-66.7%);
    }
}

@keyframes fourth {
    0%, 100% {
        font-variation-settings: "wght" 700, "wdth" 75;
        left: 0%;
        transform: translateX(200%);
    }
    25% {
        font-variation-settings: "wght" 800, "wdth" 100;
        left: 100%;
        transform: translateX(-100%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-100%);
    }
    75% {
        font-variation-settings: "wght" 800, "wdth" 100;
        left: 100%;
        transform: translateX(-100%);
    }
}

.box5 {
    grid-column: span 3;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    font-family: 'Bandeins-Strange', serif;
    font-size: 15rem;
    color:white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    overflow:hidden;
}

.box5:hover {
    background-color: lavender;
    text-shadow: none;
    color: #ee7752;
}

@keyframes fiveBox{
    0%, 100% {
        font-stretch: 100%;

    }
    25% {
        font-stretch: 300%;
        transform:rotate(-90deg);


    }
    50% {
        font-stretch:800%;

    }
    75% {
        font-stretch: 500%;
        transform:rotate(90deg);

    }
}
#hi{
    position:relative;
    width:100%;
    height:100%;
}
#hi h1{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#hi:hover{
    animation: fiveBox 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
}

.box6 {
    position:relative;
    grid-column: span 4;
    height: 500px;
    border: 2px black solid;
    background-color: white;
}

.box6:hover {
    background-color: orangered;
}

#chg{
    position:absolute;
    top:25%;
    left:50%;
    width: 75%;
    transform: translate(-50%, -50%);
    font-family: "Fraunces", serif;
    font-size: 5rem;
    font-variation-settings: 'opsz' var(--opszAxis), 'wght' var(--wghtAxis), 'SOFT' var(--softAxis), 'WONK' var(--wonkAxis);
}

/*slider stuff that's working perfectly below*/
#labelsAndSliders{
    width: 70%;
    font-size: 2rem;
    /*margin-left: 30%;*/
}
#labelsAndSliders label{
    position:absolute;
    left: -25%;
}
.opszSlider, .wghtSlider, .wonkSlider, .softSlider{
    position:absolute;
    width:25%;
    left:25%;
}
.opszSlider{
    top:50%;
}
.wghtSlider{
    top:60%;
}
.wonkSlider{
    top:70%;
}
.softSlider{
    top:80%;
}
.opszSlider_range, .wghtSlider_range, .softSlider_range, .wonkSlider_range{
    -webkit-appearance: none;
    width: 10rem;
    height: 20px;
    border-radius: 10px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0 0 0 80%;
}
.box6:hover .opszSlider_range, .box6:hover .wghtSlider_range, .box6:hover .softSlider_range, .box6:hover .wonkSlider_range{
    background-color: darkolivegreen;
}
.wghtSlider_range::-webkit-slider-thumb, .opszSlider_range::-webkit-slider-thumb,
.wonkSlider_range::-webkit-slider-thumb, .softSlider_range::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
    -webkit-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}
.wghtSlider_range::-webkit-slider-thumb:hover, .opszSlider_range::-webkit-slider-thumb:hover,
.wonkSlider_range::-webkit-slider-thumb:hover, .softSlider_range::-webkit-slider-thumb:hover{
    background: white;
}
.wghtSlider_range:active::-webkit-slider-thumb, .opszSlider_range:active::-webkit-slider-thumb,
.wonkSlider_range:active::-webkit-slider-thumb, .softSlider_range:active::-webkit-slider-thumb{
    background: white;
}
.wghtSlider_range::-moz-range-thumb, .opszSlider_range::-moz-range-thumb,
.wonkSlider_range::-moz-range-thumb, .softSlider_range::-moz-range-thumb{
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 50%;
    background: gray;
    cursor: pointer;
    -moz-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}
.wghtSlider_range::-moz-range-thumb:hover, .opszSlider_range::-moz-range-thumb:hover,
.wonkSlider_range::-moz-range-thumb:hover, .softSlider_range::-moz-range-thumb:hover{
    background: white;
}
.wghtSlider_range:active::-moz-range-thumb, .opszSlider_range:active::-moz-range-thumb,
.wonkSlider_range:active::-moz-range-thumb, .softSlider_range:active::-moz-range-thumb{
    background: white;
}
::-moz-range-track {
    background: #d7dcdf;
    background: linear-gradient(to right, gray 0%, black 60%, black 100%);
    border: 0;
}
input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

.box7 {
    grid-column: span 5;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    font-family: 'Recursive', serif;
    font-variation-settings: 'CASL' 1, 'CRSV' 1;
    font-size: 5rem;
    overflow: hidden;
}

.box7:hover {
    background-color: orange;
}

.box7:hover, .box7:hover * {
    color: #fc5130;
    text-shadow: none;
}

.single2 {
    color: white;
    position: relative;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.single2 span {
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 1.5vw;
}

.single2 span:nth-child(1) {
    animation: fifth 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
}

.single2 span:nth-child(2) {
    animation: sixth 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
    transform: translateX(100%);
}

.single2 span:nth-child(3) {
    animation: seventh 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
    transform: translateX(200%);
}

.single2 span:nth-child(4) {
    animation: eighth 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;
    transform: translateX(300%);
}

.box7 {
    display: grid;
}

.box7 .single2:nth-child(1) span {
    animation-delay: 0.06s;
}

.box7 .single2:nth-child(2) span {
    animation-delay: 0.12s;
}

.box7 .single2:nth-child(3) span {
    animation-delay: 0.18s;
}

.box7 .single2:nth-child(4) span {
    animation-delay: 0.24s;
}

.box7 .single2:nth-child(5) span {
    animation-delay: 0.3s;
}

.box7 .single2:nth-child(6) span {
    animation-delay: 0.36s;
}

.box7 .single2:nth-child(7) span {
    animation-delay: 0.42s;
}

.box7 .single2:nth-child(8) span {
    animation-delay: 0.48s;
}

.box7 .single2:nth-child(9) span {
    animation-delay: 0.54s;
}

.box7 .single2:nth-child(10) span {
    animation-delay: 0.6s;
}

.box7 .single2:nth-child(11) span {
    animation-delay: 0.66s;
}

.box7 .single2:nth-child(12) span {
    animation-delay: 0.72s;
}

.box7 .single2:nth-child(13) span {
    animation-delay: 0.78s;
}

.box7 .single2:nth-child(14) span {
    animation-delay: 0.84s;
}

.box7 .single2:nth-child(15) span {
    animation-delay: 0.9s;
}

.box7 .single2:nth-child(16) span {
    animation-delay: 0.96s;
}

.box7 .single2:nth-child(17) span {
    animation-delay: 1.02s;
}

.box7 .single2:nth-child(18) span {
    animation-delay: 1.08s;
}

@keyframes fifth {
    0%, 100% {
        font-variation-settings: "wght" 100, "wdth" 75;
        left: 0%;
        transform: translateX(5%);
    }
    25% {
        font-variation-settings: "wght" 450, "wdth" 100;
        left: 5%;
        transform: translateX(-5%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-300%);
    }
    75% {
        font-variation-settings: "wght" 450, "wdth" 100;
        left: 0%;
        transform: translateX(0%);
    }
}

@keyframes sixth {
    0%, 100% {
        font-variation-settings: "wght" 300, "wdth" 75;
        left: 0%;
        transform: translateX(66.7%);
    }
    25% {
        font-variation-settings: "wght" 600, "wdth" 100;
        left: 33.3%;
        transform: translateX(-33.3%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-225%);
    }
    75% {
        font-variation-settings: "wght" 600, "wdth" 100;
        left: 33.3%;
        transform: translateX(-33.3%);
    }
}

@keyframes seventh {
    0%, 100% {
        font-variation-settings: "wght" 500, "wdth" 75;
        left: 0%;
        transform: translateX(133.3%);
    }
    25% {
        font-variation-settings: "wght" 700, "wdth" 100;
        left: 66.7%;
        transform: translateX(-66.7%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-175%);
    }
    75% {
        font-variation-settings: "wght" 700, "wdth" 100;
        left: 66.7%;
        transform: translateX(-66.7%);
    }
}
@keyframes eighth{
    0%, 100% {
        font-variation-settings: "wght" 700, "wdth" 75;
        left: 0%;
        transform: translateX(200%);
    }
    25% {
        font-variation-settings: "wght" 800, "wdth" 100;
        left: 100%;
        transform: translateX(-100%);
    }
    50% {
        font-variation-settings: "wght" 900, "wdth" 125;
        left: 100%;
        transform: translateX(-100%);
    }
    75% {
        font-variation-settings: "wght" 800, "wdth" 100;
        left: 100%;
        transform: translateX(-100%);
    }
}

/*spinning numbers*/
.box8 {
    grid-column: span 3;
    height: 500px;
    border: 2px black solid;
    background-color: white;
}

.box8:hover {
    background-color: #23d5ab;
}

.seven {
    font-weight: 900;
    color: white;
}

.box8:hover .seven {
    color: #F89999;
    text-shadow: none;
}

.eight {
    font-weight: 800;
}

.box8:hover .eight {
    text-shadow: none;
    color: #F9A7A7;
}

.nine {
    font-weight: 700;
}

.box8:hover .nine {
    text-shadow: none;
    color: #F9B6B5;
}

.ten {
    font-weight: 600;
}

.box8:hover .ten {
    text-shadow: none;
    color: #FAC4C2;
}

.eleven {
    font-weight: 500;
}

.box8:hover .eleven {
    text-shadow: none;
    color: #FAD3D0;
}

.twelve {
    font-weight: 400;
}

.box8:hover .twelve {
    text-shadow: none;
    color: #FBE1DE;
}

.p:nth-child(1) .spinner2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.p:nth-child(2) .spinner2 {
    -webkit-animation-delay: -1.6s;
    animation-delay: -1.6s;
}

.p:nth-child(3) .spinner2 {
    -webkit-animation-delay: -2.4s;
    animation-delay: -2.4s;
}

.p:nth-child(4) .spinner2 {
    -webkit-animation-delay: -3.2s;
    animation-delay: -3.2s;
}

.p:nth-child(5) .spinner2 {
    -webkit-animation-delay: -4s;
    animation-delay: -4s;
}

.p:nth-child(6) .spinner2 {
    -webkit-animation-delay: -4.8s;
    animation-delay: -4.8s;
}

.box9 {
    grid-column: span 4;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    font-family: 'Saira', serif;
    color: white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    /*align-items: center;*/
    /*justify-content: center;*/
    overflow: hidden;
    position: relative;
}
#bye{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    font-size:2em;
    font-variation-settings: 'wdth' 125, 'wght' 100;
}
.box9:hover {
    background-color: lightgreen;
    text-shadow:none;
    color: #0b1284;
    transform: rotate(-180deg);
    font-size: 5rem;
}
.box9:hover #bye{
    font-variation-settings: 'wdth' 50, 'wght' 900;
}
.box10 {
    grid-column: span 5;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    position: relative;
}

.box10:hover {
    background-color: lightskyblue;
}

.box10 h2 {
    font-family: 'Recursive', monospace;
    font-variation-settings: 'CASL' 1;
    font-size: 3rem;
    margin: 10px 0 20px 0;
    text-align: center;
}

.box10:hover h2 {
    color: #ee7752;
}
.draggableImageContainer{
    position: absolute;
    top:60%;
    left:50%;
    transform: translate(-50%, -50%);
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-around;
    /*width: 100%;*/
    /*height:auto;*/
    width: 60%;
    height:auto;
}

.dragImgs{
    height: 50px;
    width: auto;
    margin: 15% 2%;
}
.box11 {
    grid-column: span 1;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    overflow:hidden;
}

.box11:hover {
    background-color: yellow;
}

.box12 {
    grid-column: span 1;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    color:white;
    position:relative;
    font-family: 'Recursive', monospace;
    font-variation-settings: 'slnt' 10, 'CASL' 1, 'CRSV' 0, 'wght' 1000;
    font-size: 3rem;
}
.box12 p{
    position:absolute;
    transform: rotate(90deg);
    text-align:center;
    top:40%;
}
.box12:hover {
    background-color: plum;
    animation: hideAndSeek 0.25s infinite alternate-reverse;
}
@keyframes hideAndSeek {
    0%, 100% {
        font-variation-settings: "wght" 1000, 'CRSV' 1, 'slnt' 0;
        font-size: 5rem;
    }
    25% {
        font-variation-settings: "wght" 400, 'CRSV' 1, 'slnt' 15;
        font-size: 1rem;
    }
    50% {
        font-variation-settings: "wght" 800, 'CRSV' 0, 'slnt' 2, 'MONO' 1;
        font-size: 4rem;
    }
    75% {
        font-variation-settings: "wght" 200, 'CRSV' 0, 'slnt' 9, 'MONO' 0;
        font-size: 2rem;
    }

}

.box13 {
    grid-column: span 4;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    font-family: "Sansita Swashed", cursive;
    font-size: 4rem;
    position:relative;
    color:white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.box13:hover {
    background-color: goldenrod;
    text-shadow:none;
}

#letterToReader{
    position:absolute;
    width: 70%;
    height:auto;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
#letterToReader:hover{
    animation: letterAnim 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate;

}

@keyframes letterAnim {
    0%, 100% {
        font-variation-settings: "wght" 300;
        color: pink;
    }
    25% {
        font-variation-settings: "wght" 600;
        color: #ee7752;
    }
    50% {
        font-variation-settings: "wght" 900;
        color: lightskyblue;
    }
    75% {
        font-variation-settings: "wght" 600;
        color:darkblue;
    }

}
.box14 {
    grid-column: span 3;
    height: 500px;
    border: 2px black solid;
    background-color: white;
    position:relative;
    color:white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.box14:hover {
    background-color: thistle;
    text-shadow: none;
}

/* Expand & Contract Section*/
.expand{
    font-family: "Truculenta", serif;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    text-align:center;
    font-weight:100;
    font-size:10vw;
    line-height:10vw;
    font-variation-settings:'wght' 100, 'wdth' 85;
    animation: expand 4000ms infinite forwards;
}

@keyframes expand{
    50% {
        font-variation-settings:'wght' 700, 'wdth' 100;
    }
    100%{
        font-variation-settings:'wght' 100, 'wdth' 85;
    }
}

/*Grid Box 15*/
.box15 {
    grid-column: span 3;
    height: 500px;
    background-color: white;
    border: 2px black solid;
    font-family: 'Saira', serif;
    color: white;
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    /*align-items: center;*/
    /*justify-content: center;*/
    overflow: hidden;
}
.box15:hover {
    background-color: pink;
    text-shadow: none;
    color: #5E4AE3;
}

.scene {
    position: relative;
}

.lines {
    position: relative;
}

.txt {
    margin: 0;
    font-size: 5rem;
    font-weight: 900;
    font-stretch: 400%;
    font-style: normal;
    text-transform: uppercase;
    line-height: 83px;
    text-align: center;
    cursor: default;
    user-select: none;
}

.char {
    width: calc(5rem * 1.5);
    text-align: center;
    font-style: normal;
}
