/* =========================================
   FONTS
========================================= */

@font-face {
    font-family: "MainBasicFont";
    src: url("FONTS/mainbasiicfont.ttf") format("truetype");
}

@font-face {
    font-family: "TitleHeartFont";
    src: url("FONTS/titleheartfont.ttf") format("truetype");
}

@font-face {
    font-family: "HelloKitty";
    src: url("FONTS/hello-kitty.ttf") format("truetype");
}

@font-face {
    font-family: "NavRainyHearts";
    src: url("FONTS/navrainyhearts.ttf") format("truetype");
}

@font-face {
    font-family: "H2Kuchibue";
    src: url("FONTS/h2kuchibue.ttf") format("truetype");
}

@font-face {
    font-family: "Dogica";
    src: url("FONTS/dogica.ttf") format("truetype");
}


/* =========================================
   COLORS
========================================= */

:root {

    --dk-color: #be778d;

    --mid-color: #f0d0df;

    --lt-color: #FCF1F6;

    --dkest-color: #be778d;

    --accent: #AC536F;

    --blue: #878CC0;

    --light-blue: #d9daec;

}


/* =========================================
   GENERAL
========================================= */

html,
body {

    margin: 0;

    padding: 0;

    min-height: 100%;

    font-family: "MainBasicFont", sans-serif;

    font-size: 14px;

    background-color: white;

    background-image: url("images/bgheartsribbonspink.gif");

    background-repeat: repeat;

    color: var(--dkest-color);

}


body a {

    color: var(--accent);

    font-weight: bold;

    text-decoration: none;

}


body a:hover {

    color: var(--blue);

    text-decoration: underline;

}


p {

    line-height: 1.6;

}

li {
  margin-bottom: 5px;
  list-style-image: url('images/bluestarbullet.gif');
}



.yellow-box {

    width: 80%;
    margin: 15px 0;
    padding: 10px 15px;

    background-color: #FFF9D6;
    border: 1px dashed #be778d;

    color: var(--dkest-color);

    box-sizing: border-box;

}
.yellow-box .mini-heading {

    text-align: left;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 16px;
   

}
.yellow-box p {

    margin: 0;
    line-height: 1.5;

.gif-divider {
    width: 100%;
    height: 12px;
    margin: 15px 0;
    overflow: hidden;
    background-image: url("images/laceborder.gif");
    background-repeat: repeat-x;
    background-position: center;
}

.gif-divider img {
    display: none;
}

}

.text-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.image-tooltip {
    position: relative;
    display: inline-block;
}

.image-tooltip img { 
    display: block;
    
}


.blink-link {
    animation: blinkColor 1s steps(1) infinite;
    font-size: 17px;
}

@keyframes blinkColor {
       0%, 49% {
        color: #ff69b4;
        text-shadow: none;
    }

    50%, 100% {
        color: #D1004D;
        text-shadow:
            1px 1px 0 #FFB8DB,
            2px 2px 0 #FFB8DB,
            3px 3px 0 #FFB8DB;
            
    }
}

.image-tooltip span {
    display: none;
    position: absolute;

    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);

    padding: 5px 8px;

    background-color: var(--lt-color);
    
    color: var(--accent);

    font-family: "NavRainyHearts", sans-serif;
    font-size: 16px;
    font-weight: bold;

    white-space: nowrap;

    box-shadow: 3px 3px 3px var(--mid-color);

    z-index: 100;
}

.image-tooltip:hover span {
    display: block;
}



/* =========================================
   EMOTICONS
========================================= */

.em-happy {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/happyemote.gif") center / contain no-repeat;
    vertical-align: middle;
}

.em-sad {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/sademote.gif") center / contain no-repeat;
}

.em-laugh {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/laughemote.gif") center / contain no-repeat;
}
.em-love {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/loveemote.gif") center / contain no-repeat;
}
.em-cry {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/cryemote.gif") center / contain no-repeat;
}
.em-angy {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/angyemote.gif") center / contain no-repeat;
}
.em-shock {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/shockemote.gif") center / contain no-repeat;
}
.em-mad{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("emoticons/mademote.gif") center / contain no-repeat;
}

/* =========================================
   CONTAINER
========================================= */

#container {

    width: 1050px;

    max-width: 96%;

    margin: 15px auto 0;

}


/* =========================================
   HEADER
========================================= */

#header {

    position: relative;

    width: 100%;

    height: 130px;

    box-sizing: border-box;

    background-color: var(--lt-color);

    background-image: url("images/sparklebg.gif");

    background-repeat: repeat;

    border: 1px solid var(--dkest-color);

}


#header::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 30px;

    background-image: url("images/banner.gif");

    background-repeat: repeat-x;

    background-position: top left;

    z-index: 1;

}


.title {

    position: relative;

    z-index: 2;

    margin: 0;

    padding-top: 43px;

    color: var(--dk-color);

    font-family: "TitleHeartFont", sans-serif;

    font-size: 61px;

    font-weight: normal;

    text-align: center;

}


/* =========================================
   NAVIGATION
========================================= */

#navigation {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    margin: 8px 0;
    padding: 5px 0;

    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;

    /* removes the outer box */
    border: none;
    background-image: none;
    background-color: transparent;
}


#navigation button {

    flex: 1;

    height: 31px;

    min-width: 0;

    padding: 0 7px;

    border: 1px solid var(--dk-color);

    background-color: var(--mid-color);

    color: var(--accent);

    font-family: "NavRainyHearts", sans-serif;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    white-space: nowrap;

}


#navigation button:hover {

    background-color: var(--dk-color);

    color: white;

}


/* STAR BEFORE NAVIGATION LINKS */

.nav-star {

    display: inline-block;

    width: 14px;

    height: 14px;

    margin-right: 5px;

    vertical-align: -1px;

    background-image: url("images/yellowstarnav.gif");

    background-size: contain;

    background-repeat: no-repeat;

}


#navigation button:hover .nav-star {

    filter: brightness(0) invert(1);

}


/* =========================================
   MAIN WEBSITE LAYOUT
========================================= */

#website-layout {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}


#left-column {

    width: calc(100% - 280px);

}


/* =========================================
   MAIN BOX
========================================= */

#main-box {

    width: 100%;

    height: 816px;

    box-sizing: border-box;

    border: 1px solid var(--dkest-color);

    background-color: var(--lt-color);

    overflow-y: auto;

    overflow-x: hidden;

}

#box-content {

    padding: 20px 25px;

}

.info-list div {

   

    padding: 5px 0;

    border-bottom: 1px dotted var(--mid-color);

    

}
.info-list div:last-child {

    border-bottom: none;

}
/* =========================================
   PAGE HEADINGS
========================================= */

.page-heading {

    color: var(--accent);

    font-family: "HelloKitty", sans-serif;

    font-size: 45px;

    font-weight: normal;

    text-align: center;

}


.section-heading {

    margin-bottom: 10px;

    color: var(--accent);

    font-family: "HelloKitty", sans-serif;

    font-size: 32px;

    text-align: center;

}


/* =========================================
   REPEATING STAR DIVIDER
========================================= */

.star-divider {
    width: 100%;
    height: auto;
    margin: 7px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.star-divider img {
    width: auto;
    height: auto;
    max-width: 100%;
}


/* Repeats the image horizontally */






/* =========================================
   WELCOME
========================================= */

.welcome-area {

    display: flex;

    align-items: center;

}


.welcome-text {

    flex: 1;

}


/* =========================================
   HOME SECTIONS
========================================= */

.home-section {

    margin-top: 28px;

    padding-top: 18px;
    

    border-top: 1px dashed var(--dk-color);

}


.center {

    text-align: center;

}


/* =========================================
   ABOUT ME
========================================= */

.about-me-preview {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 10px 15px;

    background-color: #fff8fb;

    border: 1px solid var(--mid-color);

}


.about-avatar {

    width: 115px;

    height: auto;

}


.about-preview-text {

    flex: 1;

}


/* =========================================
   LINK ME
========================================= */

.link-me {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    margin: 15px auto;

}


.button-preview {

    width: 160px;

    text-align: center;

}


.link-me-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 88px;
    height: 31px;

    box-sizing: border-box;

    background-image: url("images/pinklacebutton.png");
    background-repeat: repeat;

    border: 1;

    color: #222 !important;

    font-family: "Dogica";
    font-size: 6px;
    font-weight: normal;

    text-decoration: none !important;

    image-rendering: pixelated;

    overflow: hidden;
}

.link-me-button:hover {
    color: black !important;
    text-decoration: none !important;
}

.link-me-button .letter {
    position: relative;
    z-index: 2;
    animation: blinkLetters 1.8s infinite;
}

.link-me-button .l1  { animation-delay: 0s; }
.link-me-button .l2  { animation-delay: .12s; }
.link-me-button .l3  { animation-delay: .24s; }
.link-me-button .l4  { animation-delay: .36s; }
.link-me-button .l5  { animation-delay: .48s; }
.link-me-button .l6  { animation-delay: .60s; }
.link-me-button .l7  { animation-delay: .72s; }
.link-me-button .l8  { animation-delay: .84s; }
.link-me-button .l9  { animation-delay: .96s; }
.link-me-button .l10 { animation-delay: 1.08s; }
.link-me-button .l11 { animation-delay: 1.20s; }
.link-me-button .l12 { animation-delay: 1.32s; }

@keyframes blinkLetters {

    0%, 100% {
        opacity: 1;
    }

    10%, 20% {
        opacity: 0.15;
    }

    30% {
        opacity: 1;
    }

}


.code-box {

    flex: 1;

    width: 200px;

}


.code-box textarea {

    width: 200px;

    height: 70px;

    box-sizing: border-box;

    padding: 6px;

    resize: none;

    border: 1px solid var(--dk-color);

    background-color: white;

    color: var(--accent);

    font-family: monospace;

    font-size: 10px;

}


.code-box small {

    font-size: 10px;

}


.link-explanation {

    text-align: center;

    font-size: 12px;

    max-width: 600px;

    margin: 10px auto;

}


/* =========================================
   SIDEBAR
========================================= */

#sidebar {

    width: 270px;

    flex: 0 0 270px;

}


/* =========================================
   SIDE BOXES
========================================= */

.side-box {

    width: 100%;

    box-sizing: border-box;

    margin-bottom: 10px;

    padding: 12px;

    border: 1px solid var(--dkest-color);

    background-color: var(--lt-color);

}


/* =========================================
   SIDE TITLES
========================================= */

.side-title {

    margin: -12px -12px 12px;

    padding: 6px;

    background-color: var(--mid-color);

    color: var(--accent);

    font-family: "H2Kuchibue", sans-serif;

    font-size: 25px;

    font-weight: normal;

    text-align: center;

}

.credit-heading {

    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--accent);
    font-family: "H2Kuchibue", sans-serif;
    font-size: 30px;
    font-weight: normal;
    text-align: center;

}



/* =========================================
   CURRENTLY
========================================= */

.currently div {

    display: grid;

    grid-template-columns: 20px 70px 1fr;

    gap: 3px;

    padding: 5px 0;

    border-bottom: 1px dotted var(--mid-color);

    font-size: 14px;

}


.currently div:last-child {

    border-bottom: none;

}


/* =========================================
   MUSIC
========================================= */

.music-box {

    background-color: #f7e5ed;

}


.music-player {

    padding: 9px;

    background-color: var(--lt-color);

    border: 1px solid var(--mid-color);

}


.album-cover {

    float: left;

    width: 50px;

    height: 50px;

    margin-right: 9px;

    display: flex;

    justify-content: center;

    align-items: center;

    background-color: var(--light-blue);

    border: 1px solid var(--blue);

    color: var(--blue);

    font-size: 23px;

}


.song {

    padding-top: 6px;

    color: var(--accent);

}


.progress-bar {

    clear: both;

    height: 5px;

    margin-top: 13px;

    background-color: var(--mid-color);

}


.progress-bar div {

    width: 40%;

    height: 100%;

    background-color: var(--accent);

}


.music-controls {

    margin-top: 7px;

    text-align: center;

    color: var(--accent);

}


/* =========================================
   WEBAMP
========================================= */



.webamp {
    position: fixed !important;
    top: 100px !important;
    right: 30px !important;
    left: auto !important;
    z-index: 99999 !important;
}
#webamp-position {
    position: relative;
    width: 1px;
    height: 1px;
}
/* =========================================
   GUESTBOOK
========================================= */

.guestbook-preview {

    max-height: 100px;

    overflow-y: auto;

    background-color: white;

    border: 1px solid var(--mid-color);

}


.guestbook-preview div {

    padding: 7px;

    border-bottom: 1px dotted var(--mid-color);

    font-size: 11px;

    line-height: 1.5;

}


.side-link-button {

    width: 100%;

    margin-top: 9px;

    padding: 6px;

    border: 1px solid var(--dk-color);

    background-color: var(--mid-color);

    color: var(--accent);

    font-family: "NavRainyHearts", sans-serif;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

}


.side-link-button:hover {

    background-color: var(--dk-color);

    color: white;

}


/* =========================================
   WORK IN PROGRESS
========================================= */

.work-box {

    background-color: var(--lt-color);
    box-sizing: border-box;
    padding: 12px;

}


.work-box .side-title {

    margin-bottom: 0;

}


.work-scroll {

    height: 240px;
    margin: 0 -12px -12px;
    padding: 0 12px 12px;
    overflow-y: auto;
    box-sizing: border-box;

}


.work-scroll::-webkit-scrollbar-track {

    background-color: var(--lt-color);

}


.work-scroll::-webkit-scrollbar {

    width: 10px;
    background-color: var(--mid-color);

}


.work-scroll::-webkit-scrollbar-thumb {

    background-color: var(--mid-color);
    border: 1px solid var(--dk-color);

}

.mini-heading {

    margin-top: 13px;
    margin-bottom: 7px;
    color: var(--accent);
    font-family: "NavRainyHearts", sans-serif;
    font-size: 23px;
    font-weight: normal;
    text-align: center;

}


.work-box ul {

    padding-left: 25px;
    margin-top: 5px;

}


.work-box li {

    font-size: 13px;
    margin-bottom: 7px;
    list-style-image: url('images/bluestarbullet.gif');

}


/* =========================================
   BOTTOM BOXES
========================================= */

#bottom-boxes {

    display: flex;

    gap: 10px;

    margin-top: 10px;

}


.bottom-box {

    flex: 1;

    min-height: 125px;

    box-sizing: border-box;

    padding: 12px;

    border: 1px solid var(--dkest-color);

    background-color: var(--lt-color);

}


/* =========================================
   AROUND THE WEB
========================================= */

.around-web {
    background-image: url("images/pinkgridbg.gif");
    background-repeat: repeat;

    display: flex;
    flex-direction: column;
}

.around-web .web-links {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.around-web .web-links button {
    width: 100%;
    height: 100%;
}


/* =========================================
   SITE STATS
========================================= */

/* Intentionally no pinkgrid background */

.site-stats {

    background-color: var(--lt-color);

    background-image: none;

}


.web-links {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.web-links button {
    width: 100%;
    height: 40px;
    min-height: 45px;
    border: 1px solid var(--dk-color);
    background-color: var(--mid-color);
    color: var(--accent);
    font-family: "NavRainyHearts", sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}


.web-links button:hover {

    background-color: var(--dk-color);

    color: white;

}


/* =========================================
   STATS
========================================= */

.stats {

    font-size: 13px;

    line-height: 1.7;

}


.stats p {

    margin-top: 0;

}


/* =========================================
   PAGE ELEMENTS
========================================= */

.hidden {

    display: none;

}


.construction {

    width: 70%;

    margin: 35px auto;

    padding: 20px;

    border: 1px dashed var(--dk-color);

    background-color: var(--mid-color);

    text-align: center;

    font-family: "NavRainyHearts", sans-serif;

    font-size: 20px;

}


.favorite-site-list {

    display: flex;

    flex-direction: column;

    gap: 8px;

    width: 75%;

    margin: 25px auto;

}


.favorite-site-list a {

    padding: 9px;

    background-color: var(--mid-color);

    border: 1px solid var(--dk-color);

    font-weight: bold;

}


..guestbook-big {
    width: 90%;
    margin: 30px auto;
    padding: 10px;
    background-color: var(--mid-color);
    border: 1px solid var(--dk-color);
    box-sizing: border-box;
}

.guestbook-big iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
}


/* =========================================
   FOOTER
========================================= */

#footer {

    padding: 10px;

    text-align: center;

    color: var(--accent);

}


/* =========================================
   SCROLLBAR
========================================= */

.scroll::-webkit-scrollbar-track {

    background-color: var(--lt-color);

}


.scroll::-webkit-scrollbar {

    width: 10px;

    background-color: var(--mid-color);

}


.scroll::-webkit-scrollbar-thumb {

    background-color: var(--mid-color);

    border: 1px solid var(--dk-color);

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 900px) {

    #container {

        max-width: 96%;

    }


    #website-layout {

        flex-direction: column;

    }


    #left-column {

        width: 100%;

    }


    #sidebar {

        width: 100%;

        flex: none;

    }


    #main-box {

        height: auto;

        max-height: 650px;

    }


    #navigation {

        height: auto;

        flex-wrap: wrap;

    }


    #navigation button {

        flex: 0 0 23%;

    }


    .welcome-area {

        flex-direction: column;

    }


    .about-me-preview {

        flex-direction: column;

        text-align: center;

    }


    .link-me {

        flex-direction: column;

    }


    #bottom-boxes {

        flex-direction: column;

    }

}


@media only screen and (max-width: 600px) {

    #navigation button {

        flex: 0 0 45%;

    }


    .title {

        font-size: 40px;

    }

}

/* TEXT HIGHLIGHT */
::selection {
    background-color: #ffd3ec;
    color: white;
    text-shadow:
        0 0 3px white,
        0 0 4px white,
        0 0 9px #ffb8db;
}

::-moz-selection {
    background: #f0d0df !important;
    color: white !important;
}