@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
:root
{
    color-scheme: light only;
    font-size: 16px;
    /* FONT WEIGHTS */
    --normalWeight: 500;
    --semiBoldWeight: 600;
    --boldWeight: 700;
    /* COLORS */
    --blue1: hsl(165, 80%, 70%);
    --pink1: hsl(322, 80%, 70%);
    --tblue1: hsla(165, 80%, 70%,0);
    --tpink1: hsla(345, 80%, 70%,0);
    --lblue1: color-mix(in srgb, var(--blue1),white 55%);
    --lpink1: color-mix(in srgb, var(--pink1),white 55%);
    --lblue2: color-mix(in srgb, var(--blue1),white 70%);
    --lpink2: color-mix(in srgb, var(--pink1),white 70%);
    --dblue1: color-mix(in srgb, var(--blue1),black 30%);
    --dpink1: color-mix(in srgb, var(--pink1),black 30%);
    --dblue2: color-mix(in srgb, var(--blue1),black 50%);
    --dpink2: color-mix(in srgb, var(--pink1),black 50%);
    /* SIZES */
    --sideSize: clamp(400px,60vw,1000px);
    --fontSize: 0.8em;
}

body
{
    position: relative;
    font-size: 0.8em;
    font-family: Quicksand;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.bubbleBg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(2px);
    z-index: -1;
    opacity: 0.6;
}

h1
{
    font-weight: var(--boldWeight);
}

h2
{
    margin-top: 0;
    text-align: center;
}

h6{
    margin-top: calc((var(--fontSize) * 2));
    margin-bottom: calc((var(--fontSize) * 2));
}

ul{
    margin: 0;
    padding-left: calc(var(--fontSize) * 5);
    padding-right: calc(var(--fontSize) * 4);
}

li
{
    position: relative;
    list-style: none;
    font-size: 50%;
    text-align: justify;
    margin-bottom: 0.5em;
}

li::before
{
    content: '';
    box-sizing: border-box;
    position: absolute;
    aspect-ratio: 1/1;
    height: 1em;
    top: 0.15em;
    left: calc(var(--fontSize) * -3);
    background-color: #000;
    border-radius: 50%;
    box-shadow: rgba(0,0,0,0.2) 0 0 5px;
    transform: scale(70%);
    animation: changeSize infinite 2s ease-in-out;
}
li:nth-child(2n+1)::before
{
    border: solid var(--pink1) 0.25em;
}
li:nth-child(2n)::before
{
    border: solid var(--blue1) 0.25em;
}

li:nth-child(5n)::before{animation-delay: 0ms;}
li:nth-child(5n+1)::before{animation-delay: 400ms;}
li:nth-child(5n+2)::before{animation-delay: 800ms;}
li:nth-child(5n+3)::before{animation-delay: 1200ms;}
li:nth-child(5n+4)::before{animation-delay: 1600ms;}

@keyframes changeSize
{
    from, 40% {
        transform: scale(70%) translateX(0%);
    }
    20%
    {
        transform: scale(100%) translateX(-10%);
    }
}

.note{
    font-size: 70%;
    font-weight: var(--semiBoldWeight);
}
.note2{
    font-size: 40%;
    font-weight: var(--semiBoldWeight);
}

.bubbles
{
    position: relative;
}
.bubbles::after
{
    content: "";
    position: absolute;
    left: -10%;
    top: -8%;
    width: 55%;
    height: 80%;
    opacity: 40%;
    border-radius: 50%  25% 40% 80% / 70%;
    z-index: -1;
    background-image: linear-gradient(0deg,transparent,var(--pink1));
    filter: brightness(100%);
    transition: all 0.4s;
}
.bubbles:hover::after
{
    left: -18%;
    top: -10%;
    transform: scale(110%);
}

.bubbles
{
    transition: color 0.3s ease-out, text-shadow 0.3s ease-out;
    cursor: default;
}
.bubbles:hover
{
    color: #FFF;
    text-shadow: rgba(0, 0, 0, 0.7) 0 0 10px;
}

.bubbles::before
{
    content: "";
    position: absolute;
    right: -8%;
    bottom: -8%;
    width: 45%;
    height: 70%;
    opacity: 40%;
    border-radius: 50%  25% 40% 80% / 70%;
    z-index: -1;
    background-image: linear-gradient(180deg,transparent,var(--blue1));
    transition: all ease-out 0.4s;
}
.bubbles:hover::before
{
    right: -18%;
    bottom: -10%;
    transform: scale(110%);
}

.notebookPaint.pink svg path
{
    fill: url("#pinkGradient"); 
}
.notebookPaint.blue svg path
{
    fill: url("#blueGradient"); 
}

.side
{
    box-sizing: border-box;
    position: absolute;
    display: none;
    background-image: linear-gradient(var(--lpink2),#FFF,var(--lblue2));
    width: var(--sideSize);
    height: 102vh;
    align-items: center;
    justify-content: center;
    font-size: 300%;
    overflow: hidden;

}

.contentalign
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.side .contentalign .content
{
    box-sizing: border-box;
    display: block;
    text-align: center;
    height: fit-content;
}
.lefttext{
    text-align: justify;
    max-width: calc(var(--sideSize) * 0.8);
    height: 100%;
}
.btext
{
    font-weight: var(--boldWeight);
    font-size: 150%;
}
.stext
{
    font-size: 65%;
}

.bline
{
    position: relative;
}
.bline::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    border-radius: 1000px;
    z-index: -1;
    opacity: 40%;
}
b:nth-child(2n+1) .bline:nth-child(2n+1):after
{
    background-image: linear-gradient(transparent,var(--pink1));
}
b:nth-child(2n) .bline:nth-child(2n+1):after
{
    background-image: linear-gradient(transparent,var(--blue1));
}
b:nth-child(2n+1) .bline:nth-child(2n):after
{
    background-image: linear-gradient(transparent,var(--pink1));
}
b:nth-child(2n+1) .bline:nth-child(2n):after
{
    background-image: linear-gradient(transparent,var(--blue1));
}
a{
    color: var(--blue1);
    text-shadow: rgba(255,255,255,0.9) 0 0 5px;
    transition: all 0.2s ease-in-out;
}
p{
    position: relative;
    margin-left: 2rem;
}
p:nth-child(2n)::after
{
    box-shadow: var(--blue1) 4px 0;
}
p:nth-child(2n+1)::after
{
    box-shadow: var(--pink1) 4px 0;
}
p::after
{
    content: "";
    position: absolute;
    top: 0;
    left: -1.8rem;
    width: 0.5rem;
    height: 100%;
    background-color: black;
    border-radius: 0.25rem;
}


a:hover{
    color: color-mix(in srgb, var(--blue1),black 20%);
    text-shadow: var(--blue1) 0 0 20px;
}

.arrowTurn{
    --_arrowSize: min(5rem,5.5vw);
    --_arrowSizeHover: min(6rem,7vw);
    --_arrowMargin: calc((100vw - var(--sideSize) * 1) / 4);
    position: absolute;
    top: 50%;
    border-radius: 50%;
    box-shadow: inset rgba(0,0,0,0.2) 0 3px 10px,
    rgba(0,0,0,0.1) 0 5px 7px;
    transition: filter 0.3s ease-out;
    cursor: pointer;
}
.arrowTurn svg{
    padding: calc(var(--_arrowSize) * 0.25);
    height: var(--_arrowSize);
    width: var(--_arrowSize);
    transition: width 0.3s ease-out,height 0.3s ease-out;
}
.arrowTurn.left{
    left: var(--_arrowMargin);
    transform: translate(-50%,-50%);
    background-image: linear-gradient(var(--lblue1),white);
    border: solid var(--lblue1) calc(var(--_arrowSize) * 0.2);
}
.arrowTurn.right{
    right: var(--_arrowMargin);
    transform: translate(50%,-50%);
    background-image: linear-gradient(var(--lpink1),white);
    border: solid var(--lpink1) calc(var(--_arrowSize) * 0.2);
}
.arrowTurn.left svg{
    transform: scaleX(-1) translate(3%,0%);
}
.arrowTurn.right svg{
    transform: translate(5%,0%);
}
.arrowTurn:hover svg
{
    height: var(--_arrowSizeHover);
    width: var(--_arrowSizeHover);
}
.arrowTurn:hover{
    filter: brightness(110%);
}

.duckParent1, .duckParent2
{
    position: absolute;
    height: min(14rem,20vw);
    width: fit-content;
}
.duckParent1
{
    top: 70%;
    left: calc(var(--sideSize) + (100vw - var(--sideSize)) / 2 - 2rem);
    transform: scaleX(-1);
    filter: drop-shadow(rgba(0,0,0,0.1) 20px -2px 10px);
}
.duckParent2
{
    top: 10%;
    right: calc(var(--sideSize) + (100vw - var(--sideSize)) / 2 - 2rem);
    transform: scaleX(-1);
    filter: drop-shadow(rgba(0,0,0,0.1) -20px 2px 10px);
}

.duckParent1 .duckBeak
{
    filter: drop-shadow(rgba(0,0,0,0.1) 15px 5px 10px);
}
.duckParent1 .duckEye
{
    filter: drop-shadow(rgba(0,0,0,0.15) 2px 10px 10px);
}
.duckParent2 .duckBeak
{
    filter: drop-shadow(rgba(0,0,0,0.1) -15px 5px 10px);
}

.progLangs
{
    --_height: calc(var(--sideSize) / 11);
    display: flex;
    height: fit-content;
    font-size: 50%;
    font-weight: var(--semiBoldWeight);
    gap: calc(var(--_height) / 3);
    justify-content: center;
}

.progLangs .progLang
{
    width: min-content;
    height: fit-content;
    padding: calc(var(--_height) / 4);
    border-radius: calc(var(--_height) / 8);
    border: outset calc(var(--_height) * 0.07);
    transform: skewX(-5deg);
    transition: filter 0.3s ease-out,
    transform 0.3s ease-out;
}
.progLangs .progLang:hover
{
    filter: saturate(80%) brightness(120%);
    transform: translateY(-10%) rotate(5deg) skewX(-5deg);
}
.progLangs .progLang:nth-child(2n)
{
    background-color: var(--pink1);
    border-color: var(--pink1);
}
.progLangs .progLang:nth-child(2n+1)
{
    background-color: var(--blue1);
    border-color: var(--blue1);
}
.progLangs .progLang svg
{
    width: fit-content;
    height: var(--_height);
    filter: brightness(200%) drop-shadow(0px calc(var(--_height) * 0.04) 0 #000);
    margin-bottom: calc(var(--_height) / 8);
}

.linkinput
{
    display: flex;
    font-size: 0.8em;
    color: var(--pink1);
    justify-content: center;
}

.linkinput input
{
    background-color: transparent;
    border: solid var(--pink1) 2px;
    border-radius: 10px;
    margin-left: 0.1em;
    min-width: 0;
    font-size: 1em;
    color: var(--pink1);
    font-family: Quicksand;
    height: 1.1em;
}
.linkinput input:focus
{
    background-color: color-mix(in srgb, var(--pink1), var(--tpink1) 90%);
    outline: none;
}

.pageSuggestion
{
    position: relative;
    left: 0em;
    color: #FFF;
    text-shadow: #000 0 0 0.15em;
    font-size: 0.5em;
    font-weight: var(--semiBoldWeight);
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0.2em;
    padding: 0.2em;
    padding-left: 0.3em;
    padding-right: 0.3em;
    border-radius: 0.3em;
    background-image: linear-gradient(transparent,rgba(255,255,255,0.3));
    filter: brightness(100%);
    transition: left 0.3s ease-out,
    filter 0.3s linear;
}
.pageSuggestion:hover
{
    cursor: pointer;
    left: 0.5em;
    filter: brightness(110%);
}

.pageSuggestion::before
{
    content: "";
    position: absolute;
    height: 100%;
    width: 0.25em;
    background-color: #000;
    top: 0;
    right: calc(100% + 0.25em);
    border-radius: 0.125em;
    opacity: 0%;
    transition: opacity 0.3s ease-out;
}
.pageSuggestion:hover::before
{
    opacity: 100%;
}

.pageSuggestion:nth-child(2n){background-color: var(--blue1);}
.pageSuggestion:nth-child(2n+1){background-color: var(--pink1);}

.visitButton{
    left: 0em;
    font-size: 0.55em;
    font-weight: var(--boldWeight);
    text-transform: uppercase;
    width: fit-content;
    padding: 0.2em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    border-radius: 0.3em;
    background-image: linear-gradient(transparent,rgba(255,255,255,0.3));
    background-color: var(--pink1);
    border: outset var(--pink1) 0.2em;
    margin-top: 1em;
    cursor: pointer;
    transition: transform 0.3s ease-out;
}
.visitButton:hover
{
    transform: scale(110%);
    filter: brightness(110%);
}

.centerAlign
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkInterface
{
    padding-top: 0.7em;
    padding-bottom: 0.7em;
    border-top: dashed var(--pink1) 0.1em;
    border-bottom: dashed var(--pink1) 0.1em;
}

.visitError
{
    font-size: 0.5em;
    font-weight: var(--semiBoldWeight);
    color: var(--dpink1);
}

.squig1, .squig2
{
    position: absolute;
    width:  calc((100% - var(--sideSize)) / 1.8);
    height: 60vh;
    opacity: 0.5;
    filter: blur(2px);
}

.squig1
{
    left: 0;
    top: calc(min(36rem,40vw) / -10);
}

.squig2
{
    right: 0;
    bottom: calc(min(36rem,40vw) / -10);
}



@media only screen and (max-width: 1300px)
{
    :root{
        --fontSize: 0.65rem;
    }
    body 
    {
        font-size: 0.65rem;
    }
}

@media only screen and (max-width: 900px)
{
    :root{
        --fontSize: 0.55rem;
    }
    body 
    {
        font-size: 0.55rem;
    }
}