
/*
@media only screen and (max-width: 1260px) {
.mean {
    margin-top: 160px;
}
}
@media only screen and (max-width: 960px) {
    .mean {
        margin-top: 320px;
    }
  }
  @media only screen and (max-width: 805px) {
    .mean {
        margin-top: 450px;
    }
  }
*/



@font-face {
    font-family: "Carbon Bold";
    src: url(Carbon\ Bold.woff)
}
@font-face {
    font-family: "B612";
    src: url(B612\ Regular.woff)
}
@font-face {
    font-family: "Apple Casual";
    src: url(Apple\ Casual\ Regular.ttf)
}
@font-face {
    font-family: "Pro Font Windows";
    src: url(ProFontWindows.ttf)
}
:root {
    --CC: 36, 230, 155;
    --C2: 0, 219, 66;
    --PB: brightness(12200%);
    --PBN: none;
    --TCC: black;
    --AMERICA: #246ce6;
    --fontlol: "Carbon Bold"

    
}
body {
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: color-mix(in srgb, rgba(var(--CC), 1) 8%, rgba(24,24,24,1));
}
a {
    text-decoration: none;
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-button {
    background: rgb(var(--C2));
}
::-webkit-scrollbar-track-piece {
    background: rgb(6, 6, 6);
}
::-webkit-scrollbar-thumb {
    background: rgb(var(--CC));
}
html::-webkit-scrollbar {
    display: none;
}
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }


.uiURL {
    text-decoration: none;
    text-decoration: underline;
    color: rgb(var(--CC));
    font-size: 1.1rem;
        transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
    text-shadow: 0 0 16px rgb(var(--CC));
}
.uiURL:hover {
    letter-spacing: 1.5px;
    text-shadow: 0 0 24px rgb(var(--CC));
}
.uiUrlImp {
    text-decoration: none;
    color: rgb(193, 124, 242);
    text-shadow: 0 0 16px rgb(193, 124, 242);
    font-size: 1.4rem; 
}
.time {
    font-size: 1.1rem;
    font-weight: bold;
}
.down {
    line-height: 18px;
}
* {
    font-family: var(--fontlol);
    font-size: 20px;
    font-weight: 300;
    text-align: middle;
}

.dashboard {
    z-index: 2;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to top, rgb(var(--CC)), rgb(var(--C2)));
        box-shadow: 0 24px 64px rgba(9, 9, 15, 1); 

}
.dashboard, .dashboardblack, .dashboardLogo{
    animation: dbph 0.25s forwards;
    position: fixed;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-timing-function: cubic-bezier(.05,.67,.37,.91);
    top: 0px;
    width: 100%;
    height: 35%;
    min-height: 75px;
    opacity: 1;
    left: 0px;

}

.signButton {
    border-color: rgba(var(--CC), 1);
    background: none;
    border-width: 4px;
    border-style: solid;
    border-bottom-width: 12px;
    padding-left: 50px;
    font-size: 36px;
    width: 250px;
    height: 60px;
    font-weight: bold;
    padding-right: 50px;
    color: rgba(var(--CC), 1);
    text-shadow: 0 0 12px rgba(var(--CC), 0.4);
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
    overflow: hidden;
    position: relative;
  }
  .signButton:hover {
    background: rgba(var(--CC), 1);
    box-shadow: 0 0 95px rgb(var(--CC), 0.52);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    color: white;
    border-bottom-width: 8px;
    margin-top: 3px;
    cursor: pointer;
    border-color: rgba(var(--CC), 1);


  }
  .signButton::after {
    display: block;
    content: '';
    position: absolute;
    height: 75px;
    width: 169px;
    filter: blur(2px);
    background-image: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, transparent 55%);
    transform: skew(-45deg);
    margin-top: -45px;
    margin-left: -180px;
  }
  .signButton:hover::after {
    animation: LightSweep 1.6s linear infinite;
}
.signButton:active {
    border-bottom-width: 4px;
    margin-top: 7px;
    border-color: rgba(var(--C2), 1);
    background: rgba(var(--C2), 1);
    color: black;
    text-shadow: 0 0 0.4vh white;
}
@keyframes LightSweep {
    0% {
        left: -115px;
    }
    15% {
        left: calc(100% + 225px);
    }
    100% {
        left: calc(100% + 225px);
    }
}
.polls {
    width: 100%;
    z-index: 999;
    font-size: 1.35em;
    position: absolute;
    text-align: center;
    color: rgb(255, 211, 211);
    text-shadow: 0 0 12px rgba(255, 211, 211, 0.8);
    animation: rgb 3s infinite;
    background: rgba(0,0,0,0.5);
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
}
.polls:hover, .pollsText:hover {
    font-size: 2em;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 211, 211, 1);
}
.pollsText:hover {
    font-size: 1.55em;
}
.pollsText {
    font-size: 1.35em;
    text-align: center;
    color: rgb(255, 211, 211);
    text-shadow: 0 0 12px rgba(255, 211, 211, 0.8);
    animation: rgb 3s infinite;
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
}
.dashboardLogo {
    animation: dbph 0.25s forwards;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-timing-function: cubic-bezier(.05,.67,.37,.91);
    display: flex;
    align-items: center;
    z-index: 4;
    margin: 0;
    padding: 0;

}
.dashboardblack {
    animation: dbph 0.25s forwards;
    z-index: 1;
    background-color: rgb(69, 68, 71);
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-timing-function: cubic-bezier(.05,.67,.37,.91);
}
.boo {
    width: 100%;
    height: 100%;
    display: block;
}
.dashboardplace {
    display: block;
    position: relative;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-timing-function: cubic-bezier(.05,.67,.37,.91);
    width: 100vw;
    height: 45vh;
    min-height: 75px;
    z-index: -1;
    opacity: 1;

}
@keyframes dbfadeout {
    from {
        filter: blur(0.69px);
    }
    to {
    height: 6%;
    min-height: 35px;
   /* opacity: 0.65; */
    filter: blur(5px);
    }
}
@keyframes dbph {
    to {
        height: 6vh;
        min-height: 35px;
    }
}
@keyframes blur {
    from {
        filter: blur(0.69px);
        filter: contrast(1);
        filter:invert(0);
    }
    to {
    filter: blur(5px);
    filter: contrast(.5);
    filter:invert(100);

    }
}
@keyframes ui {
    from {
        margin-left: 25vw;
        height: 20vh;
    }
    to {
        margin-left: calc(-25vw + 100px);
        margin-right: 100vw;
        height: 10vh;
    }
}
.themes {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.mean {
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tooltip, .tooltip2 {
    position: relative;
    display: inline-block;
    margin-bottom: -12px;
}
/* Tooltip text */
.tooltip .tooltiptext, .tooltip2 .tooltiptext2 {
    visibility: hidden;
    margin-bottom: 26px;

    width: 120px;
    background-color: rgba(var(--CC), 0.15);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
  
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: -125%;
    left: 50%;
    margin-left: -61px;
  
    /* Fade in tooltip */
    opacity: 0;
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
  }
  
  /* Tooltip arrow */
  .tooltip .tooltiptext::after, .tooltip2 .tooltiptext2::after {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(var(--CC), 0.15) transparent transparent transparent;
    transform: rotateX(180deg)
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext, .tooltip2:hover, .tooltiptext2 {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
    text-shadow: 0 0 6px rgba(var(--CC), 1);

  }

.appear{
    pointer-events: none;
}
  .visitorWrapper  {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .NumberText {
    color: rgb(var(--CC));
    text-shadow: 0 0 15px rgba(var(--CC), 0.74);
    font-size: 18px;
    border: none;
    font-family: 'B612';
  }
  .counterText {
    color: rgb(var(--CC));
    text-shadow: 0 0 21px rgba(var(--CC), 0.94);
    font-size: 24px;
    font-weight: bold;
    font-family: 'Carbon Bold';
    border: none;
  }
  .counterTextSmall {
    color: rgb(var(--CC));
    text-shadow: 0 0 21px rgba(var(--CC), 0.94);
    font-size: 18px;
    font-weight: bold;
    font-family: 'Carbon Bold';
    border: none;
  }

.bttnwrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.ColorBttn {
    justify-self: center;
    display: flex;
    background-color: rgb(9, 9, 15, 0);
    border-radius: 6px;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(var(--CC));
    padding: 4px;
    filter: var(--PBN);
    margin-left: 0px; 
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
}

.ColorBttn:hover .clrimg {
    margin-left: 0px;
    filter: var(--PB);
    box-shadow: 0 0 95px rgb(255, 255, 255, 0.52);
}
.ColorBttn:hover {
    background-color: rgb(var(--CC));
    box-shadow: 0 0 95px rgb(var(--CC), 0.52);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    color: white;
    box-shadow: 0 0 95px rgb(var(--CC), 0.52);
}
.colorPanel {
    border-radius: 9px;
    color: white;
    padding: 0px 48px;
    overflow: hidden;
    background-color: none;
    box-shadow: 0 0 95px rgb(var(--CC), 0.52);
    max-height: 0px;
    width: 462px;
    display: flex;
    justify-items: center;
    margin-top: 12px;
    text-align: center;
    transition: max-height 0.2s ease-out;
}
.wegetit {
    color: white;
}
.rnimg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    animation: blur 0.25s forwards;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-timing-function: cubic-bezier(.05,.67,.37,.91);

}

.ButtonDb {
    background: linear-gradient(to bottom, #f5f5f5, #a6dcfd);
    border: none;
    border-radius: 4.5px;
}
.dashlinks {
    margin-top: 10vh;
    display: grid;
    justify-items: center;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0px;
}
.rnlogo {
    object-fit: contain;
    overflow: hidden;
    height: 9vh;
    width: 51vw;
    animation: ui 0.25s forwards;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-timing-function: cubic-bezier(.05,.67,.37,.91);
    margin: 0;
    padding: 0;
    z-index: 10000;
    border: none;
    position: absolute;
    mix-blend-mode: normal;
    filter: none;


}
.wegetit {
    overflow: hidden;
}
.imp {
    font-weight: bold;
    font-size: 2em;
    color: rgb(188, 232, 188);
    animation: rgb 2s infinite;
    animation-timing-function: linear;
    overflow: hidden;
}
@keyframes rgb {
    from {
        filter: hue-rotate(0);
    }
    to {
        filter: hue-rotate(360deg);
    }
}
.tetriobutton, .limbobutton, .portfoliobutton, .twitterbutton, .youtubebutton {
    text-decoration: none;
    position: absolute;
    display: inline-block;
    width: calc(22vw + 24px);
    min-width: 385px;
    font-family: "Carbon Bold";
    padding: 8px 0 8px;
    border: none;
    margin-top: 0px;
    border-style: solid;
    border-width: 3px;
    text-align: middle;
    border-color: rgb(var(--CC));
    background-color: rgb(9, 9, 15, 0);
    color: rgb(var(--CC));
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
    overflow: hidden;
    border-radius: 4px;
    margin-top: -50px;
    text-shadow: 0 0 12px rgba(var(--CC), 0.4);

}
.tetriobutton:hover, .limbobutton:hover,  .portfoliobutton:hover, .twitterbutton:hover, .youtubebutton:hover, .ytbutton:hover {
    background-color: rgb(var(--CC));
    margin-top: -57px;
    box-shadow: 0 0 95px rgb(var(--CC), 0.52);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    color: white;
}
.tetriobutton::after, .limbobutton::after, .portfoliobutton::after, .twitterbutton::after, .youtubebutton::after, .ytbutton::after {
    display: block;
    content: '';
    position: absolute;
    height: 75px;
    width: 169px;
    filter: blur(2px);
    background-image: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, transparent 55%);
    transform: skew(-45deg);
    top: -23px;
    left: -115px;
}
.tetriobutton:hover::after, .limbobutton:hover::after, .portfoliobutton:hover::after, .twitterbutton:hover::after, .youtubebutton:hover::after, .ytbutton:hover::after {
    animation: LightSweep 1.6s linear infinite;}
@keyframes LightSweep {
    0% {
        left: -115px;
    }
    15% {
        left: calc(100% + 25px);
    }
    100% {
        left: calc(100% + 25px);
    }
}

.tetoWrapper, .FunWrapper, .portWrapper, .conWrapper, .comWrapper, .MWrapper, .AlertWrapper, .donoWrapper {
    width: calc(22vw + 30px);
    min-width: 390px;
    margin: 0;
    /* background-color: green; */
    margin-top: 20px;
}

.THeader, .FHeader, .PHeader, .CHeader, .MHeader, .AHeader, .DHeader {
    border: rgb(255, 255, 255);
    border-width: 3px;
    height: 56px;
    width: calc(22vw + 30px);
    min-width: 390px;
    background-image: linear-gradient(165deg, rgb(var(--CC)), rgb(var(--C2))); 
    margin: 0 0 0 0;
    box-shadow: 0 0 134px rgba(var(--CC), 0.35);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.PHeader {
    background-image: linear-gradient(165deg, rgb(var(--CC)), rgb(var(--C2))); 
    box-shadow: 0 0 134px rgba(var(--CC), 0.35);
    
}
.CHeader {
    background-image: linear-gradient(165deg, rgb(var(--CC)), rgb(var(--C2))); 
    box-shadow: 0 0 134px rgba(var(--CC), 0.35);
    

}
.THeaderimg, .FHeaderimg, .PHeaderimg, .CHeaderimg, .MHeaderimg, .AHeaderimg, .DHeaderimg  {
    display: inline-block;
    align-self: center;
    height: 85%;
    margin-left: 12px;
}
.THeader::before, .Fheader::before, .PHeader::before, .CHeader::before, .MHeader::before, .AHeader::before, .DHeader::before, .FHeader::before, .PortfolioHeader::before, .PortfolioHeader2::before, .motion::before, .experience::before {
    display: inline-block;  
    content: '';
    position: absolute;
    height: 75px;
    width: 169px;
    filter: blur(2px);
    background-image: -webkit-linear-gradient(left, rgba(255, 0, 0, 0) 0%, rgba(255, 255, 255, 0.32) 50%, transparent 55%);
    transform: skew(-45deg);
    top: -10px;
    left: -150px;
    z-index: 0;
    animation: LightSweepTheader 3.2s 1s linear infinite;
}
@keyframes LightSweepTheader {
    0% {
        left: -150px;
    }
    7% {
        left: calc(100% + 50px);
    }
    100% {
        left: calc(100% + 50px);
    }
}
@keyframes LightSweepTheaderSlow {
    0% {
        left: -150px;
    }
    11% {
        left: calc(100% + 50px);
    }
    100% {
        left: calc(100% + 50px);
    }
}
.PortfolioHeader::before, .PortfolioHeader2::before {
    animation: LightSweepTheaderSlow 3.2s 1s linear infinite;
}
.TRead, .FRead, .CRead, .PRead, .MRead, .ARead, .DRead, .MrRead {
    margin: 0 0 0 0;
    border: 3px solid white;
    border-top: none;
    height: calc(240px);
    width: calc(22vw + 24px);
    background-color: rgba(0, 128, 0, 0); 
    box-shadow: 0 0 134px rgba(var(--CC), 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 385px;
    animation: ReadTcPc 4s -2.67s infinite;
    border-image: linear-gradient(to right, rgb(var(--CC)), rgb(var(--C2)))2 3 100%;
}
.MrRead {
    height: calc(180px + 60px);

}
.PRead {
    animation: ReadTcPc 4s -1.33s infinite;

}
.CRead {
    animation: ReadTcPc 4s -0s infinite;
    height: calc(340px + 125px);
}
.MRead {
    height: calc(180px);
}
.DRead {
    height: calc(360px + 70px);
}
.ARead {
    height: calc(329px);
}
.TreadTxt, .FreadTxt, .CreadTxt, .PreadTxt, .MreadTxt, .AreadTxt, .DreadTxt {
    font-family: "B612";
    margin: 0 0 0 0;
    font-size: .85rem;
    text-align: left;
    margin-left: 7px;
    margin-top: 7px;
    margin-right: 5px;
    line-break: auto;
    line-height: 22px;
    color: white;
    text-shadow: 0 0 8px rgba(var(--CC), 0.5);
    display: inline-block;
    margin-bottom: 25px;

}
.showdown123 {
    height: 100%;
    width: 100%;
    margin-left: -7px;
    display: grid;
    margin-top: 12px;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
grid-gap: 12px;

}
.azureColor, .SylveonColor, .RivuletColor, .UnfDevColor, .TriangleColor, .PacificiColor, .LomadexColor, .whiskeyColor, .NineElevenColor, .prideColor, .jennaColor, .javaColor {
    font-size: 15px;
    font-weight: normal;
    text-align: center;
    vertical-align: center;
    background-size: 200% auto;
    border-radius: 6px;
    color: white;
    display: inline-block;
    background-image: linear-gradient(to right, rgb(107, 174, 255), rgb(32, 88, 255));
    border: none;
    width: 86px;
    height: 86px;
    margin-left: 12px;
    margin-right: 12px;
    text-wrap: nowrap; 
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
}
.azureColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(107, 174, 255, 0.7);
}
.NineElevenColor {
    background-image: linear-gradient(to right, rgb(255, 167, 123), rgb(254, 195, 119));

}
.NineElevenColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(255, 167, 123, 0.7);

}
.PacificiColor {
    background-image: linear-gradient(to right, rgb(153, 179, 157), rgb(173, 212, 193));
    color: black;
}
.PacificiColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(153, 179, 157, 0.7);
}
.prideColor {
    background-image: linear-gradient(to right, rgb(123, 123, 255), rgb(134, 82, 255));

}
.prideColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(123, 123, 255, 0.7);
}
.jennaColor {
    background-image: linear-gradient(to right, rgb(255, 72, 85), rgb(232, 64, 75));

}
.jennaColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(255, 72, 85, 0.7);
}
.whiskeyColor {
    background-image: linear-gradient(to right, rgb(213, 175, 143), rgb(217, 159, 112));

}
.whiskeyColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(213, 175, 143, 0.7);
}
.TriangleColor {
    background-image: linear-gradient(to right, rgb(255, 74, 228), rgb(240, 119, 222));
}
.TriangleColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(240, 119, 222, 0.7);
}
.javaColor { 
    background-image: linear-gradient(to right, rgb(36, 230, 155), rgb(14, 137, 90));
}
.javaColor:hover { 
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(36, 230, 155, 0.7);
}
.LomadexColor {
    color: black;
    background-image: linear-gradient(to right, rgb(226, 200, 232), rgb(195, 191, 199));
}
.LomadexColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(226, 200, 232, 0.7);
}
.SylveonColor {
    background-image: linear-gradient(to right, rgb(255, 178, 243), rgb(255, 141, 238));
    color: black;
}
.SylveonColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(255, 178, 243, 0.7);
}
.RivuletColor {
    background-image: linear-gradient(to right, rgb(186, 223, 255), rgb(134, 188, 249));
    color: black;
}
.RivuletColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(186, 223, 255, 0.7);
}
.UnfDevColor {
    background-image: linear-gradient(to right, rgb(0, 79, 224), rgb(0, 4, 135));
    color: white;
}
.UnfDevColor:hover {
    margin-top: -10px;
    box-shadow: 0 0 50px rgb(0, 79, 224, 0.7);
}


.appear {
    position: absolute;
    top: 50%;
    opacity: 0;
    transition: left 0.5s cubic-bezier(0,.77,.37,1.18), opacity 0.2s;
    text-align: center;
    right: 0;
    left: -70%;
    top: 372px;
    margin: 0 auto;
    text-shadow: 0 0 8px rgba(var(--CC), 0.5);
    font-family: "B612";
}

.AreadTxt {
    height: 100%;
    line-break: auto;
    overflow: hidden;
    overflow-y: scroll;
    margin-bottom: 0px;

}

.THeaderTxt, .FHeaderTxt, .CHeaderTxt, .PHeaderTxt, .MHeaderTxt, .AHeaderTxt, .DHeaderTxt {
    display: inline-block;
    position: relative;
    font-style: italic;
    font-size: 56px;
    width: 100%;
    height: 100%;
    text-align: right;
    line-height: 56px;
    margin: 0 0px 0 0px;
    margin-right: 12px;
    color: rgb(var(--TCC));
}
.sylveonartWrapper {
width: 85vw;
margin-top: 60px;
height: min(max(105px, 12vh), 150px);
display: grid;
grid-template-columns: .7fr 2fr .8fr;
margin-left: 7.5vw;
overflow: hidden;
border-radius: 10px;
filter: drop-shadow(0 0 3px rgba(var(--CC), 0.5));
transition: all 0.74s cubic-bezier(0,.77,.37,1.18);



}

.sylveonartWrapper:hover {
    filter: drop-shadow(0 0 16px rgba(var(--CC), 0.4));
    width: 95vw;
    margin-left: 2.5vw;


}


.pokePattern{
pointer-events: none;
width: 400%;
height: 1550%;
background-image: url(sylveonartuipatternSmall.png);
background-repeat: repeat;
mix-blend-mode: screen;
z-index: -23;
animation: 2.8s linear 0s infinite moveLeft;
transition: all 0.74s cubic-bezier(0,.77,.37,1.18);

}
@keyframes moveLeft {
    from {
transform: translateX(-200px); 
    }
    to {
        transform: translateX(-25px);
    }
}
.pokeGradient {
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: linear-gradient(to right, rgba(var(--CC)), rgb(var(--C2)));
    background-clip: url(sylveonartuipatternSmall.png);
}
.TitleandText {
    background: rgb(9, 9, 15, 1);
    z-index: 12;
}
.TitleandText:after {
    background-image: linear-gradient(to bottom, rgb(var(--CC)), rgb(var(--C2)));
    content: "";
    position: absolute;
    inset: 0;
    z-index: 12;
    opacity: 0.2;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 33% 100%, 58% 50%, 33% 0%);
    transform: scaleX(0.2) translateX(800px);
}
.pokeTrans {
width: 400%;
height: 1550%;
    transform: rotate(-10deg) scale(1.1);
    overflow: hidden;
    mix-blend-mode: screen;

}
.pokeTitle{
    display: inline-block;
    color: rgb(var(--CC));
    font-size: 72px;
    margin-left: 10px;
    -webkit-text-stroke: 4px rgb(32,32,32);
    paint-order: stroke fill;
    transition: all 0.44s cubic-bezier(0,.77,.37,1.18);
}
.pokeTitle:hover {
    font-size: 82px;
    letter-spacing: 4px;
    text-shadow: 0 0 12px rgb(var(--CC));
}
.pokeDesc {
    color: white;
    margin-left: 15px;
    font-family: B612;
    text-shadow: 0 0 12px rgb(var(--C2));
}
.artCaption {
    position: absolute;
    font-size: 24px;
    font-family: B612;
    background: rgb(0, 0, 0, 0.7);
    padding-right: 4px;
    color: white;
    text-shadow: 0 0 12px rgb(var(--CC));
    white-space: nowrap;
    line-height: 22px;
    padding-right: 20px;
    padding-top: 7px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);

}
.artImage {
    width: 100%;
    height: 100%;
}

.doingWrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: rgba(var(--C2), 0.1);
    padding-bottom: 30px;
    padding-top: 30px;
    margin-top: 20px;
}
.whatDoing, .musicHeader {
    color: rgb(var(--CC));
    text-shadow: 0 0 15px rgba(var(--CC), 0.74);
    font-size: 20px;
    font-family: 'B612';
    margin-left: calc(20vw - 134px);
    
}
.musicHeader {
    margin-left: 0;
}
.responseWrapper {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}
.bigDoing {
    color: rgb(var(--CC));
        text-shadow: 0 0 15px rgba(var(--CC), 0.44);
        font-size: 64px;
        transform: scaleY(103%);
}
.smallDoing {
        color: rgb(160, 160, 160);
        text-shadow: 0 0 15px rgba(var(--CC), 0.44);
        font-family: B612;
        font-size: 16px;
        margin-top: 8px;
}
.recentTitle {
    margin-top: 12px;
        color: rgb(var(--CC));
        text-shadow: 0 0 15px rgba(var(--CC), 0.44);
        font-size: 28px;
        margin-bottom: 20px;
        
}
.recentWrapper {
    margin-bottom: 15px;
}
.activityWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.activityBorder {
    display: flex;
    justify-content: left;
    width: 30vw;
    max-width: 700px;
    border-width: 3px;
    border-image: linear-gradient(110deg,rgba(var(--CC), 0.1) 20%, rgba(var(--CC), 0.9) 50%, rgba(var(--CC), 0.1) 80%) 1;
    border-style: solid;
    background-image: linear-gradient(110deg,rgba(var(--CC), 0.05) 20%, rgba(var(--CC), 0.25) 50%, rgba(var(--CC), 0.05) 80%);
}
.activityInfo {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding-left: 15px;
    padding-top: 5px;
    
}
.activityImage {
    height: 100px;
}
.activityTime {
        color: rgb(var(--CC));
        text-shadow: 0 0 15px rgba(var(--CC), 0.44);
        font-family: B612;
        text-align: left;
}
.activityTitle {
            color: rgb(var(--CC));
            text-shadow: 0 0 15px rgba(var(--CC), 0.44);
            font-size: 36px;
            text-align: left;
            transform: scaleY(103%);
}
.activityResponse {
    color: rgb(var(--CC));
    paint-order: stroke fill;
    font-size: 14px;
    text-align: left;
    font-family: B612;
    margin-top: 4px;
    
}
.arrowDeco, .dotsDeco {
    position: absolute;
    transform: translateX(14vw) rotate(-10deg) scaleY(200%) scaleX(160%);
    color: rgb(var(--CC));
    opacity: 0.7;
    text-shadow: 0 0 15px rgba(var(--CC), 1);
    font-size: 32px;
        }
.dotsDeco {
        transform: translateX(54vw) translateY(5.5vh);

}
.windowsWrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.recentWrapper {
    margin-left: 10px;
}
.pingCircle {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, rgb(var(--CC)), rgb(var(--C2)));
  display: inline-block;
  transform: translateY(-1px);
}
.ping {
    display: inline-block;
        text-shadow: 0 0 15px rgba(var(--CC), 1);
    color: rgb(var(--CC));
}
.pingNum {
    font-size: 28px;
    margin-left: 8px;
}
.musicWrapper {
    display: flex;
    flex-direction: column;
}
.titleText {
    font-size: 48px;
    white-space: nowrap;
    color: rgb(var(--CC));
    text-shadow: 0 0 15px rgba(var(--CC), 0.44);
    transform: scaleY(104%);
        font-family: B612;
        font-weight: bold;
        display: inline-block;
        padding: 0;
        margin: 0;
}
.songTitle {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: left;
}
:root {
    --titleMargin: 0;
}

@keyframes titleShuffle{
    from {
        transform: translateX(calc(var(--titleMargin) * -1px));
    }
    25% {
        transform: translateX(calc(var(--titleMargin) * -1px));
    }
    50% {
        transform: translateX(calc(var(--titleMargin) * 1px));
    }
    75% {
        transform: translateX(calc(var(--titleMargin) * 1px));
    }
    100% {
        transform: translateX(calc(var(--titleMargin) * -1px));
    }
}

.songArtist {
    color: rgb(var(--CC));
    font-size: 20px;
    transform: scaleY(104%);
    text-shadow: 0 0 15px rgba(var(--CC), 1);
}

.divider {
    background-image: linear-gradient(to right, rgba(0,0,0,0) 10%, rgba(var(--CC), 0.7) 50%, rgba(0,0,0,0) 90%);
    height: 4px;
    width: 200px;
    align-self: center;
    margin-top: 15px;
    margin-bottom: 15px;

}
