:root {
  --caro-gap: 10vw;
  --caro-width: 40%;
  --caro-height: 60%;
  --caro-width-large: 0;
  --caro-height-large: 0;
  --mobile-view: 0;
  --desk-description-width: 450px;
  --desk-description-height: 420px;
  --desk-description-font-size: 24px;
  --caro-title-font-size: 80px;
}

@font-face {
  font-family: 'DescriptionProtocol';
  src: url('fonts/DescriptionProtocol.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'PrinceValiant';
    src: url('fonts/PrinceValiant.woff2') format('woff2'),
        url('fonts/PrinceValiant.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VCR';
    src: url('fonts/VCROSDMono.woff2') format('woff2'),
        url('fonts/VCROSDMono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@media screen and (max-width:9999px) {
    :root {
        --caro-width: 360px;
        --caro-height: 480px;
        --caro-width-large: 420px;
        --caro-height-large: 560px;
    }

    .shaharazon {
        background-image: url('images/SHAHARAZON_display_360_480.png');
    }

    .wyrm-canyon {
        background-image: url('images/WyrmCanyon_display_360_480.png');
    }

    .goblin-knight {
        background-image: url('images/goblinknight_display_360_480.png');
    }

    .mage-hand {
        background-image: url('images/MageHand_display_360_480.png');
    }

    .kill-protocol {
        background-image: url('images/KillProtocol_display_360_480.png');
    }

    .xcvb {
        background-image: url('images/XCVB_display_360_480.png');
    }

    .carousel-group {
        top: 40px;
    }

    .carousel-describers-desk {
        display: block;
    }

    .carousel-describers-mobile {
        display: none;
    }
}

@media screen and (max-width:1100px) {
    :root {
        --caro-width: 300px;
        --caro-height: 400px;
        --caro-width-large: 360px;
        --caro-height-large: 480px;
    }

    .shaharazon {
        background-image: url('images/SHAHARAZON_display_300_400.png');
    }

    .wyrm-canyon {
        background-image: url('images/WyrmCanyon_display_300_400.png');
    }

    .goblin-knight {
        background-image: url('images/goblinknight_display_300_400.png');
    }

    .mage-hand {
        background-image: url('images/MageHand_display_300_400.png');
    }

    .kill-protocol {
        background-image: url('images/KillProtocol_display_300_400.png');
    }

    .xcvb {
        background-image: url('images/XCVB_display_300_400.png');
    }

    .carousel-group {
        top: 40px;
    }

    .carousel-describers-desk {
        display: block;
    }

    .carousel-describers-mobile {
        display: none;
    }
}
/*
@media screen and (max-width:850px) {
    :root {
        --caro-width: 300px;
        --caro-height: 400px;
        --caro-width-large: 360px;
        --caro-height-large: 480px;
        --mobile-view: 0;
        
    }

    .shaharazon {
        background-image: url('images/SHAHARAZON_display_300_400.png');
    }

    .wyrm-canyon {
        background-image: url('images/WyrmCanyon_display_300_400.png');
    }

    .goblin-knight {
        background-image: url('images/goblinknight_display_300_400.png');
    }

    .mage-hand {
        background-image: url('images/MageHand_display_300_400.png');
    }

    .kill-protocol {
        background-image: url('images/KillProtocol_display_300_400.png');
    }

    .xcvb {
        background-image: url('images/XCVB_display_300_400.png');
    }

    .carousel-group {
        top: 40px;
    }

    .carousel-describers-desk {
        display: none;
    }

    .carousel-describers-mobile {
        display: block;
    }
}
*/

@media screen and (max-width:950px) {
    :root {
        --caro-width: 300px;
        --caro-height: 400px;
        --caro-width-large: 300px;
        --caro-height-large: 400px;
        --mobile-view: 1;
    }

    .carousel-group {
        top: 0;
    }

    .carousel-describers-desk {
        display: none;
    }

    .carousel-describers-mobile {
        display: block;
    }
}

body {
  background-color: white;
  margin: 0 0 0 0;
}

.carousel {
    position: relative;
    width: 100vw;
    margin: 0 0 0 0;
    overflow: hidden;
    min-height: var(--caro-height-large);
    background-color: white;
    
}

.carousel-background {
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    transition: opacity 0.1s ease;
    opacity: 1;
    display: none;

}

.carousel-group {
    position: relative;
    display: flex;
    transition: transform 0.2s ease;
    gap: var(--caro-gap);
}

.carousel-item {
    min-width: var(--caro-width);
    min-height: var(--caro-height);
    box-sizing: border-box;
    text-align: center;
    font-size: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
    left: 10px;
}

.carousel-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
    right: 10px;
}

.carousel-button-expand {
    min-width: var(--caro-width-large);
    min-height: var(--caro-height-large);
    background: rgba(0, 0, 0, 0);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease;
    transform-origin: center;
    transform: scale(0.86, 0.86);
}

.carousel-expand-image {
    height: 100%;
    width: 100%;
    position: absolute;
    min-width: var(--caro-width-large);
    min-height: var(--caro-height-large);
    top: 0;
    left: 0;
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.15s ease;
    opacity: 0;
}

.carousel > .center-children {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: center;
}

.crud {
    font-size: 2rem;
    height: 3000px;
}

@media screen and (max-width:1720px) {
    :root{
    --desk-description-width: 450px;
    --desk-description-height: 420px;
    --desk-description-font-size: 24px;
    --caro-title-font-size: 70px;
    }
}

@media screen and (max-width:1520px) {
    :root{
    --desk-description-width: 350px;
    --desk-description-height: 420px;
    --desk-description-font-size: 20px;
    --caro-title-font-size: 58px;
    }
}

@media screen and (max-width:1320px) {
    :root{
    --desk-description-width: 250px;
    --desk-description-height: 420px;
    --desk-description-font-size: 18px;
    --caro-title-font-size: 46px;
    }
}

@media screen and (max-width:1100px) {
    :root{
    --desk-description-width: 250px;
    --desk-description-height: 360px;
    --desk-description-font-size: 16px;
    --caro-title-font-size: 40px;
    }
}

@media screen and (max-width:1050px) {
    :root{
    --desk-description-width: 200px;
    --desk-description-height: 360px;
    --desk-description-font-size: 14px;
    --caro-title-font-size: 36px;
    }
}

.carousel-describers-desk {
    position: absolute;
    top: 0px;
    left: calc(var(--caro-width-large) + var(--caro-gap) + var(--caro-width)/2);
    z-index: 3;
    width: 50vw;
    height: var(--caro-height-large);
    pointer-events: none;
}

.carousel-description-background {
    width: var(--desk-description-width);
    height: var(--desk-description-height);
    overflow: hidden;
    position: absolute;
    z-index: 3;
}

.carousel-description-text {
    width: var(--desk-description-width);
    height: var(--desk-description-height);
    position: absolute;
    perspective: 0px;
    z-index: 4;
}

.carousel-description-credit {
    width: var(--desk-description-width);
    height: var(--desk-description-height);
    position: absolute;
    perspective: 0px;
    z-index: 4;
}

.carousel-description-text:has(.carousel-description-text-SHAHARAZON) {
    top: 70px;
}
.carousel-description-credit:has(.carousel-description-credit-SHAHARAZON) {
    z-index: 3;
    top: 70px;
}

.carousel-description-text:has(.carousel-description-text-WyrmCanyon) {
    top: 10px;
}
.carousel-description-credit:has(.carousel-description-credit-WyrmCanyon) {
    top: 24px;
    left: 12px;
}

.carousel-description-background:has(.carousel-description-background-goblinknight) {
    overflow: visible;
    top: 160px;
    left: -15px;
}
.carousel-description-text:has(.carousel-description-text-goblinknight) {
    top: 160px;
    left: -15px;
}
.carousel-description-credit:has(.carousel-description-credit-goblinknight) {
    top: 190px;
    z-index: 2;
}

.carousel-description-background:has(.carousel-description-background-MageHand) {
    overflow: visible;
    top: 10px;
    left: 30px;
}
.carousel-description-text:has(.carousel-description-text-MageHand) {
    top: 30px;
    left: 30px;
}
.carousel-description-credit:has(.carousel-description-credit-MageHand) {
    top: 30px;
    left: 30px;
}

.carousel-description-text:has(.carousel-description-text-KillProtocol) {
    perspective: 400px;
    top: 130px;
    left: -10px;
}
.carousel-description-credit:has(.carousel-description-credit-KillProtocol) {
    perspective: 400px;
    height: calc(140px + var(--desk-description-height));
    left: -10px;
    top: 10px
}

.carousel-description-background:has(.carousel-description-background-XCVB) {
    bottom: 30px;
    overflow: hidden;
}
.carousel-description-text:has(.carousel-description-text-XCVB) {
    bottom: 30px;
}
.carousel-description-credit:has(.carousel-description-credit-XCVB) {
    top: 30px;
}



.carousel-description-text-SHAHARAZON {
    width: 100%;
    height: 100%;
    border-color: transparent;
    border-style: solid;
    border-width: 9px 4px 4px 4px;
    border-image-source: url('images/SHAHARAZON_border_image_1.png');
    border-image-slice: 9 26 4 4;
    border-image-repeat: repeat;
    border-image-width: 9px 26px 4px 4px;
    image-rendering: pixelated;
    padding: 4px;
    position: absolute;
    top: -9px;
    left: -4px;
    background-color: #173ff9;
}

.carousel-description-text-SHAHARAZON * {
    color: white;
    font-family: "VCR", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--desk-description-font-size));
    pointer-events: all;
    z-index: 5;
    margin-top: 0px;
}

.carousel-description-text-SHAHARAZON * > a{
    color: #e2383b;
}

.carousel-description-text-SHAHARAZON * > a:hover{
    color: #44e537;
}


.carousel-description-credit-SHAHARAZON {
    width: 100%;
    height: 80px;
    border-color: transparent;
    border-style: solid;
    border-width: 9px 4px 4px 4px;
    border-image-source: url('images/SHAHARAZON_border_image_1.png');
    border-image-slice: 9 26 4 4;
    border-image-repeat: repeat;
    border-image-width: 9px 26px 4px 4px;
    image-rendering: pixelated;
    padding: 4px;
    position: absolute;
    top: -50px;
    left: 60px;
    background-color: white;
}

.carousel-description-credit-SHAHARAZON * {
    color: black;
    font-family: "VCR", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--desk-description-font-size));
    pointer-events: all;
    z-index: 5;
    margin-top: calc(var(--desk-description-font-size) * -1 - 7px);
}

.carousel-description-credit-SHAHARAZON * > span{
    color: #282828;
    background-color: #e5e5e5;
    border: 1px solid #b4b4b4;
    border-bottom-width: 0;
}

.carousel-description-text-WyrmCanyon {
    width: 100%;
    height: 120%;
    border: 16px solid transparent;
    border-image: url('images/WyrmCanyon_border_image_1.png') 16 round;
    background-clip: padding-box;
    image-rendering: pixelated;
    padding: 4px;
    position: absolute;
    background-color: #ff65c7;
}

.carousel-description-text-WyrmCanyon * {
    color: #9f06b0;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--desk-description-font-size) * 0.9);
    pointer-events: all;
    z-index: 5;
    margin-top: calc(var(--desk-description-font-size) * 1.5 + 28px);
}

.carousel-description-text-WyrmCanyon * > a{
    background-color: #9f06b0;
    color: #ff65c7;
    text-decoration: none;
}

.carousel-description-text-WyrmCanyon * > a:hover{
    text-decoration: underline;
}

.carousel-description-credit-WyrmCanyon {
    width: 80%;
    height: calc(var(--desk-description-font-size) * 1.5);
    border: 16px solid transparent;
    border-image: url('images/WyrmCanyon_border_image_2.png') 16 round;
    background-clip: padding-box;
    image-rendering: pixelated;
    padding: 4px;
    position: absolute;
    background-color: #9f06b0;
}

.carousel-description-credit-WyrmCanyon * {
    color: #ff65c7;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--desk-description-font-size) * 0.9);
    pointer-events: all;
    z-index: 5;
    margin-top: -10px;
}

.carousel-description-credit-WyrmCanyon * > span{
    font-size: calc(var(--desk-description-font-size) * 0.45);
}

.carousel-description-background-goblinknight {
    width: 120%;
    height: 60%;
    background-image: linear-gradient(black, #a08a12);
    position: absolute;
    opacity: 0.5;
}

.carousel-description-text-goblinknight {
    width: calc(1.2 * var(--desk-description-width) - 4px);
    height: calc(0.6 * var(--desk-description-height) - 4px);
    border: 4px solid transparent;
    border-image: url('images/goblinknight_border_image_1.png') 4 round;
    position: relative;
    left: -2px;
    top: -2px;
}

.carousel-description-text-goblinknight * {
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: var(--desk-description-font-size);
    pointer-events: all;
    text-align: center;
    z-index: 5;
    margin-top: 0px;
}

.carousel-description-text-goblinknight * > a{
    color: #38dadd;
    /*
    text-shadow: -1px 0 #38dadd, 0 1px #38dadd, 1px 0 #38dadd, 0 -1px #38dadd;
    text-decoration: none;
    */
}

.carousel-description-credit-goblinknight {
    width: 448px;
    height: 107px;
    background-image: url('images/goblinknight_background_image_1.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transform: rotate(90deg);
    left: 10px;
}

.carousel-description-credit-goblinknight * {
    color: black;
    text-shadow: -2px 0 #e2383b, 0 2px #e2383b, 2px 0 #e2383b, 0 -2px #e2383b;
    font-family: "PrinceValiant", serif;
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--desk-description-font-size) * 1.5);
    pointer-events: all;
    text-align: center;
    z-index: 5;
    transform: rotate(-90deg);
    position: absolute;
    left: -100px;
}

@media screen and (max-width:1720px) {
    .carousel-description-credit-goblinknight {
        left: 10px;
    }

    .carousel-description-credit-goblinknight *{
        left: -100px;
    }
}

@media screen and (max-width:1520px) {
    .carousel-description-credit-goblinknight {
        left: -30px;
    }

    .carousel-description-credit-goblinknight *{
        left: -65px;
    }
}

@media screen and (max-width:1320px) {
    .carousel-description-credit-goblinknight {
        left: -90px;
    }

    .carousel-description-credit-goblinknight *{
        left: -45px;
    }
}

@media screen and (max-width:1100px) {
   .carousel-description-credit-goblinknight {
        left: -90px;
    }

    .carousel-description-credit-goblinknight *{
        left: -30px;
    }
}

@media screen and (max-width:1050px) {
    .carousel-description-credit-goblinknight {
        left: -120px;
    }

    .carousel-description-credit-goblinknight *{
        left: -15px;
    }
}

.carousel-description-background-MageHand {
    height: 530px;
    width: 520px;
    background-image: url('images/MageHand_background_450_420.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -40px;
    top: 0px;
    
}

/*
@media screen and (max-width:1720px) {
    .carousel-description-background-MageHand {
        height: 530px;
        width: 520px;
        background-image: url('images/MageHand_background_450_420.png');
        background-size: contain;
        background-repeat: no-repeat;
    }
}
*/

.carousel-description-text-MageHand {
    width: 90%;
    height: 110%;
    border: 16px solid transparent;
    border-image: url('images/MageHand_border_image_1.png') 16 round;
    image-rendering: pixelated;
    position: absolute;
    background-color: black;
    color: white;
    
}

.carousel-description-text-MageHand * {
    color: white;

    font-family: "Macondo", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: var(--desk-description-font-size);
    pointer-events: all;
    z-index: 5;
}

.carousel-description-text-MageHand * > a {
    color: #38dadd;
    text-shadow: 0 0 6px #38dadd;
}

.carousel-description-credit-MageHand {
    width: 90%;
    height: 110%;
    position: absolute;
    top: calc(1.1 * var(--desk-description-height) - 24px);
    right: 24px;
    
}

.carousel-description-credit-MageHand * {
    width: 100%;
    font-family: "Macondo", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--desk-description-font-size) / 2);
    pointer-events: all;
    color: #b4b4b4;
    text-align: right;
    z-index: 5;
}

.carousel-description-text-KillProtocol {
    width: 108%;
    height: 100%;
    transform: rotateY(-30deg);
    transform-style: preserve-3d;
    position: absolute
}

.carousel-description-text-KillProtocol * {
    color: white;

    font-family: "Bitcount Prop Single", system-ui;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    z-index: 5;
    font-size: calc(var(--desk-description-font-size) * 0.8);
    pointer-events: all;

}

.carousel-description-text-KillProtocol * > span{
    background-color: transparent;
}

.carousel-description-text-KillProtocol * > span:hover{
    background-color: black;
}

.carousel-description-text-KillProtocol * > a{
    text-decoration: underline;
}

.carousel-description-text-KillProtocol * > a:hover{
    background-color: white;
    color: black;
    z-index: 6;
    text-decoration: none;
}

.carousel-description-credit-KillProtocol {
    width: 100%;
    height: 100%;
    transform: rotateY(-30deg);
    transform-style: preserve-3d;
    position: absolute;
}

.carousel-description-credit-KillProtocol * {
    color: white;

    font-family: "Bitcount Prop Single", system-ui;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    z-index: 5;
    font-size: calc(var(--desk-description-font-size) * 0.8);
    pointer-events: all;
}

.carousel-description-credit-KillProtocol * > span{
    background-color: transparent;
}

.carousel-description-credit-KillProtocol * > span:hover{
    background-color: black;
}

.carousel-description-background-XCVB {
    width: 100%;
    height: 100%;
    position: relative;
    top: -128px;
    left: -128px;
    background-image: url('images/XCVB_background_1.png');
    background-repeat: repeat;
    animation: scrollXCVBBackground 5s linear infinite;
    min-width: 1000px;
    min-height: 1000px;
}

.carousel-description-text-XCVB {
    width: calc(var(--desk-description-width) - 16px);
    height: calc(var(--desk-description-height) - 16px);
    border: 12px solid transparent;
    border-image: url('images/XCVB_border_image_1.png') 12 round;
    image-rendering: pixelated;
    position: relative;
    top: -4px;
    left: -4px;
}

.carousel-description-text-XCVB * {
    color: black;

    font-family: "Jersey 15", sans-serif;
    font-weight: 400;
    font-style: normal;
    z-index: 5;
    font-size: var(--desk-description-font-size);
    margin-top: -6px;
    pointer-events: all;
}

.carousel-description-text-XCVB * > a{
    color: #0019cd
}


.carousel-description-credit-XCVB {
    width: calc(var(--desk-description-width) -4px);
    height: calc(var(--desk-description-font-size) * 2.5);
    border: 2px solid transparent;
    border-image: url('images/XCVB_border_image_2.png') 2 round;
    image-rendering: pixelated;
    position: absolute;
    background-color: black;
}

.carousel-description-credit-XCVB * {
    color: #3d5ed2;

    font-family: "Jersey 15", sans-serif;
    font-weight: 400;
    font-style: normal;
    z-index: 5;
    font-size: var(--desk-description-font-size);
    margin-top: 2px;
    margin-left: 4px;
    margin-right: 4px;
    pointer-events: all;
}



@keyframes scrollXCVBBackground {
    0% {
        transform: translate(0%, 0%);
    }

    100% {
        transform: translate(128px, 128px);
    }
}

.carousel-description-background-null {
    min-width: 0px;
    min-height: 0px;
    display: none;
}

.carousel-description-text-null {
    min-width: 0px;
    min-height: 0px;
    display: none;
}

.carousel-description-credit-null {
    min-width: 0px;
    min-height: 0px;
    display: none;
}

/*
.carousel-describers-mobile {
    background-color: black;
    padding-bottom: 20px;
}
*/

.updates {
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 4px solid #e5e5e5;
}

.updates > h2 {
    padding-left: 16px;
    color: black;
    font-family: "Prompt", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700px;
    margin: 0;
}

.updates > h4 {
    padding-right: 16px;
    text-align: right;
    color: black;
    font-family: "Rochester", cursive;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400px;
    margin: 0;
    padding-bottom: 8px;
}

.updates > p {
    padding-left: 16px;
    font-size: 2rem;
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    color: black;
    text-align: left;
}

.carousel-button-mobile {
    width: 100%;
    font-size: 1.5rem;
    background-color: #76ff69;
    border: 0px solid transparent;
    /*
    border: 4px solid transparent;
    border-image: url('images/goblinknight_border_image_1.png') 4 round;
    */
    background-clip: padding-box;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    color: black;
    padding-left: 20px;
    cursor: pointer;
    z-index: 2;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;    
}

.carousel-description-mobile {
    width: 95%;
    height: 0;
    transition: height 0.2s ease-in-out;
    overflow: hidden;
    border: 0px solid #e5e5e5;
    /*
    border-image: url('images/goblinknight_border_image_1.png') 4 round;
    */
    image-rendering: pixelated;
    background-color: white;
    
    background-clip: padding-box;
    
    margin: auto;
    margin-bottom: 20px;    
}

.carousel-description-mobile * > h2 {
    padding-left: 16px;
    color: black;
    font-family: "Prompt", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700px;
    margin: 0;
    /*
    text-shadow:
    1px 1px 0 #44e537,
    2px 2px  0 #fad019,
    3px 3px  0 #38dadd,
    4px 4px  0 #dd3894,
    5px 5px  0 #ec813b,
    6px 6px  0 #3d5ed2,
    7px 7px  0 #e2383b;
    */
}

.carousel-description-mobile * > h3 {
    padding-left: 16px;
    color: black;
    font-family: "Prompt", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700px;
    margin-bottom: 0;
    margin: 0;
}

.carousel-description-mobile * > p {
    padding: 16px;
    color: black;
    font-family: "Prompt", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400px;
    margin: 0;
}

.carousel-description-mobile * * > a{
    color: #3d5ed2;
    text-decoration: none;
    
}

.carousel-description-mobile * * > a:hover{
    text-decoration: underline;
    
}

.darkeners {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.15s ease;
    opacity: 0;
}

.dark {
    width: 0%;
    height: 100%;
    opacity: 0.8;
    background-color: black;
    flex: 1 1 0%;
}

.darken_l {
    width: 128px;
    height: 100%;
    opacity: 0.8;
    background-image: url('images/WEB_darken_l.png');
    flex: 0 0 auto;
}

.darken_r {
    width: 128px;
    height: 100%;
    opacity: 0.8;
    background-image: url('images/WEB_darken_r.png');
    flex: 0 0 auto;
}

.clear {
    width: calc(var(--caro-width-large) + 80px);
    height: 100%;
    opacity: 0;
    flex: 0 0 auto;
}

.carousel-title {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
    z-index: 3;
    font-size: var(--caro-title-font-size);
    color: white;
    display: none;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.carousel-release {
    position: absolute;
    left: 20px;
    bottom: calc(20px + var(--caro-title-font-size) + 20px);
    margin: 0;
    z-index: 3;
    font-size: calc(var(--caro-title-font-size) / 2);
    color: white;
    display: none;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.header {
    background-color: black;
    display: flex;
    top: 0;
    left: 0;
    height: 100px;
    width: 100vw;
    z-index: 10;
}

.logo {
    background-image: url('images/LLSLogo23NoText\(1\).svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.header > .logo {
    width: 100px;
    height: 100px;
}

.header > h1{
    font-size: 70px;
    font-family: "Prompt", sans-serif;
    color: white;
    padding-left: 12px;
    margin: 0;
}

@media screen and (max-width:730px) {
    .header > h1{
        font-size: 60px;
    }
}

@media screen and (max-width:630px) {
    .header > h1{
        font-size: 50px;
    }
}

@media screen and (max-width:540px) {
    .header > h1{
        font-size: 40px;
    }
}

@media screen and (max-width:460px) {
    .header > h1{
        font-size: 35px;
    }
}

.description {
    width: 100vw;
    background-color: white;
    padding-bottom: 30px;
}

.description > .logo {
    width: 600px;
    height: 600px;
    margin: auto;
}

.description > h1 {
    font-size: 4rem;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    color: white;
    text-align: center;
}

.description > p {
    font-size: 2rem;
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    color: black;
    text-align: center;
    max-width: 1000px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width:1100px) {
    .description > p {
        font-size: 1.5rem;
    }
    .updates > p {
        font-size: 1.5rem;
    }
    .updates > h2 {
        font-size: 3rem;
    }
    .updates > h4 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width:1050px) {
    .description > p {
        max-width: 95%;
    }
    .updates {
        max-width: 95%;
    }
}

@media screen and (max-width:650px) {
    .description > p {
        font-size: 1rem;
    }
    .updates > p {
        font-size: 1rem;
    }
    .updates > h2 {
        font-size: 2rem;
    }
    .updates > h4 {
        font-size: 1.5rem;
    }
}

.text-texture {
    width: 100%;
    background-color: white;
    position: relative;
}

.text-texture > h2 {
    font-size: 5rem;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    color: black;
    text-align: center;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
}

/*.text-texture > h2 > span {
    background-color: white;
}*/

/*
.text-texture > h2:hover {
    animation: leaflightifyText 1s linear 1;
    animation-fill-mode: forwards;
}
*/

@keyframes leaflightifyText {
    0% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white;
    }
    10% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537;
    }
    20% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019;
    }
    30% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019,
        6px -6px 0 #38dadd,
        7px -7px 0 #38dadd;
    }
    40% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019,
        6px -6px 0 #38dadd,
        7px -7px 0 #38dadd,
        8px -8px 0 #dd3894,
        9px -9px 0 #dd3894;
    }
    50% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019,
        6px -6px 0 #38dadd,
        7px -7px 0 #38dadd,
        8px -8px 0 #dd3894,
        9px -9px 0 #dd3894,
        10px -10px 0 #ec813b,
        11px -11px 0 #ec813b;
    }
    60% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019,
        6px -6px 0 #38dadd,
        7px -7px 0 #38dadd,
        8px -8px 0 #dd3894,
        9px -9px 0 #dd3894,
        10px -10px 0 #ec813b,
        11px -11px 0 #ec813b,
        12px -12px 0 #3d5ed2,
        13px -13px 0 #3d5ed2;
    }
    70% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019,
        6px -6px 0 #38dadd,
        7px -7px 0 #38dadd,
        8px -8px 0 #dd3894,
        9px -9px 0 #dd3894,
        10px -10px 0 #ec813b,
        11px -11px 0 #ec813b,
        12px -12px 0 #3d5ed2,
        13px -13px 0 #3d5ed2,
        14px -14px 0 #e2383b,
        15px -15px 0 #e2383b;
    }

    100% {
        text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white,
        2px -2px 0 #44e537,
        3px -3px 0 #44e537,
        4px -4px 0 #fad019,
        5px -5px 0 #fad019,
        6px -6px 0 #38dadd,
        7px -7px 0 #38dadd,
        8px -8px 0 #dd3894,
        9px -9px 0 #dd3894,
        10px -10px 0 #ec813b,
        11px -11px 0 #ec813b,
        12px -12px 0 #3d5ed2,
        13px -13px 0 #3d5ed2,
        14px -14px 0 #e2383b,
        15px -15px 0 #e2383b;
    }
}

.text-texture > div {
    font-family: monospace;
    font-weight: 700;
    font-size: 3rem;
    overflow: hidden;
    white-space: nowrap;
}

.text-texture > div > div {
    user-select: none;
}

.scroll-left {
    animation: scrollLeft 50s linear infinite;
    transform: translateX(0ch)
}

.scroll-right {
    animation: scrollRight 50s linear infinite;
    transform: translateX(-126ch)
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0ch);
    }

    100% {
        transform: translateX(-126ch);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-126ch);
    }

    100% {
        transform: translateX(0ch);
    }
}

.carousel-header {
    width: 100vw;
    background-color: #44e537;
    /*
    border-top: 10px solid black;
    border-bottom: 10px solid black;
    */
}

.carousel-header > h1 {
    font-size: 4rem;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    color: black;
    margin: 0;
    padding-left: 20px;    
}

.carousel-header > h2 {
    font-size: 4rem;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    color: black;
    margin: 0;
    padding-right: 20px;
    text-align: right; 
}

@media screen and (max-width:650px) {
    .carousel-header > h1 {
        font-size: 2rem;
    }
    .carousel-header > h2 {
        font-size: 2rem;
    }
}

.green {
    color: #44e537;
}
.yellow {
    color: #fad019;
}
.cyan {
    color: #38dadd;
}
.magenta {
    color: #dd3894;
}
.orange {
    color: #ec813b;
}
.blue {
    color: #3d5ed2;
}
.red {
    color: #e2383b;
}
