/*
Background Gradient Color - #974f39, #69142e
Banner Gradient Color - #3c0b10, #69142e
*/
:root {
    --lip-image: url(https://jamzcreativecorner.neocities.org/Images/vector-beauty-seamless-pattern-red-lips-sexy-lip-make-up-sw-sweet-kiss-candy-smile-wallpaper-colorful-illustration-creative-108313581.webp);
}

/*      
Body
    - Resetting defaults
    - Layout & Sizing
    - Global Inheritance
*/

body {
font-family: "Patrick Hand", cursive;
color: white;
background: linear-gradient(to right, #974f39, #69142e);
background-repeat: no-repeat;
margin: 0px;
padding: 0px;
background-attachment: fixed;
background-size: cover;
min-height: 100vh;

h1, h2, h3 {
    font-family: "Beth Ellen", cursive;
    color: #fbf5f2;
}
}

            /*Animated Backgroun*/

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--lip-image);
    opacity: .15;
    pointer-events: none;
    background-size: 600px;
    background-repeat: repeat;
    z-index: -2;
    animation: moveTexture 60s linear infinite;

}

@keyframes moveTexture {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 600px 600px;
    }
}

            /*End Background*/


            /*Loading Screen */

.loading-screen {
    position: fixed;
    inset:  0;
    background-color: #69142e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: fadeOut 1s ease 3s forwards;
    
    h1 {
        color: rgb(255, 255, 255);
        font-size: 80px;
        opacity: 0;
        filter: blur(20px);
        transform: translatex(-100px);
        animation: revealName 2s ease forwards;
    }
}

@keyframes revealName {
  
    from {
        opacity: 0;
        filter: blur(20px);
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}    

@keyframes fadeOut {

    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }

}

            /*End Loading Screen*/


            /* Nav Bar */

.banner {
    height: 300px;
    width: 100px;

    background: linear-gradient(to right, #3c0b10, #69142e);

    position: absolute;
    top: 75px;
    right: 30px;

    border-radius: 5px;

    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;

    overflow: visible;

    transition: height .3s ease;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%);

}


/* Main Links */

.banner > ul {
    list-style: none;

    margin-top: 20px;
    padding: 0;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: center;

    gap: 5px;
}


.banner a {
    color: white;
    text-decoration: none;
}


.banner a:hover {
    color: black;
}


/* Dropdown Button */

.dropdown-btn {
    background: none;
    border: none;

    color: white;

    cursor: pointer;

    font: inherit;
    padding: 0;
}

.dropdown-btn:hover {
    color: black;
}

/* Selected / Open */
.dropdown-btn.active {
    background: rgba(255,255,255,0.18);
    color: #ffe9f1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Submenu */

.submenu {
    list-style: none;

    max-height: 0;
    overflow: hidden;

    margin-top: 5px;
    padding: 0;

    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    width: 100%%;
    box-sizing: border-box;
    transition: max-height .3s ease, padding .3s ease;
}


.submenu li {
    margin: 0;
    padding: 0;
}


.submenu a {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
    text-align: center;
}


.submenu.open {
    max-height: 400px;
    padding: 8px 0;
    border: 2px dashed white;
}

/* End Of Nav Bar */

/* Chat Bubble */

.chat-bubble {
    background-image: url(https://jamzcreativecorner.neocities.org/Images/chat%20bubble.png);
    position: absolute;
    width: 233px;
    height: 201px;
    background-repeat: no-repeat;
    top: 132px;
    left: 436px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Clipboard */
.clipboard {
    background-image: url(https://jamzcreativecorner.neocities.org/Images/clipboard.png);
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    height: 250px;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
        a{
            color: white;
            text-decoration: none;
        }

        ul {
            list-style: disc;
            bottom: 28px;
            right: 10px;
            margin-top: 20px;
            margin-right: 20px;
            padding: 0px;
            display: flex;
            flex-direction: column;
            justify-items: center;
            align-items: center;
            gap: 1px;
            transform: rotate(9deg);
            position: relative;
         }

}
.clipboard a:hover{
    color:black;
    animation: scale(10);
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    max-width: 623px;
    height: 296px;
    z-index: 2;
    position: absolute;
    inset: 268px 0px 0px 628px;
    border: 4px dotted white;
    padding: 10px;
    line-height: 29px;
}

/*ANIMATIONS*/

/*Rotating Animation*/
.rotating {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*Pulse Animation*/
.pulse {

animation: pulse 2s ease-in-out infinite;

}
@keyframes pulse {

0%, 100% {
    transform: scale(1);    
}

50% {
    transform: scale(1.08);
}

}

/*Flicker Animation*/
.flicker {
    animation: flicker 2.5s infinite;
}

@keyframes flicker {0%, 19%, 21%, 23%, 25%, 54%, 56%, 100%{
    opacity: 1;
}

20%, 24%, 55% {
    opacity: 0.3;
}

}

/* END OF ANIMATIONS*/

.sticker {
    position: absolute;
    cursor: grab;
    user-select: none;
    z-index: 3;
    transition: transform 0.2s ease;

}
    .sticker:hover {
            transform: scale(1.09);
    }

.sticker img {
    display: block;
    pointer-events: none;
}


/*Hiding*/
@media (max-width: 768px) {

    .banner,
    .clipboard,
    .draggable,
    .chat-bubble,
    .sticker {
        display: none;
    }

}
