 
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */
:root {
  /* Background Colors: */
  --background-color: #eeeeee;
  --content-background-color: #fff;
  --sidebar-background-color: #a8c4e0;

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #3026e8;
  --link-color-hover: #7780ec;

  /* Text: */
  --font: Verdana, sans-serif;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 2px solid #000000;
  --round-borders: 15px;
  --sidebar-width: 225px;

}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("");
 
  
}

body{
  background-color: #ffebf4;
  background-image: url("https://64.media.tumblr.com/f3d4f9100ec5dd1070048e2e1e86c190/107cbd0a28f06d96-15/s75x75_c1/79dba39fdfd2864486aa50b35a8274de4222e213.pnj");
  /*background-repeat: repeat; */ 
}

::selection {
  /* (Text highlighted by the user) */
  background-color: #FF71CB;
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: #FF71CB;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */


 .layout {
    width: 1350px;
    min-width: 1350px;
    max-width: 1350px;
    display: grid;
    gap: var(--margin);

    grid-template:
        "header header header"
        "leftSidebar main rightSidebar"
        / var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);

    align-items: stretch;
}
/* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */


main {
    grid-area: main;
    padding: 0;
    
    background: transparent;
    border: none;

    --text-color: #432118;
    color: var(--text-color);
  
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */




header {
  grid-area: header;
  font-size: 1.2em;
  background: transparent;
  border: none;
  padding: 0;
}


header {
    display: flex;
    justify-content: flex-end;   /* main column positioning */

}
.site-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    width: 100%;

    image-rendering:pixelated;
}

.header-content {
 
    width: 100%;
    display: flex;
    justify-content: center;
}


.image-nav {
  
    display: flex;
    flex-wrap: nowrap;   /* don't wrap */
    justify-content: center;
}


.header-content {
  padding: var(--padding);
}



.header-image img {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */


.left-sidebar-box12 {
    width:100%;
    margin:0;
    grid-area: leftSidebar;
    
}

.right-sidebar-box12 {
    grid-area: rightSidebar;
    width: 100%;
    margin: 0;
}

.right-sidebar-content {
  overflow: visible;
}

.right-sidebar-content .sidebar-section {

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;
    margin-top:0;
}

.main-box12 {
    width: 100%;
    margin:0;
}


.header-box12 {
    width:100%;
    height:70%;
    margin:0;
}

.u01 {
    background:url("borders/f-ue_hp.png") repeat-x;
    height:32px;
    margin:0 32px;
}

.s01 {
    background:url("borders/f-sita_hp.png") repeat-x;
    height:32px;
    margin:0 32px;
}

.box-top {
    background-image:
        url("borders/f-kado1_hp.png"),
        url("borders/f-kado2_hp.png");
    background-position:
        top left,
        top right;
    background-repeat:
        no-repeat,
        no-repeat;
    height:32px;
}

.box-center {
  flex: 1;
    background-image:
        url("borders/f-migi_hp.png"),
        url("borders/f-hidari_hp.png");
    background-position:
        top right,
        top left;
    background-repeat:
        repeat-y,
        repeat-y;

    overflow: visible;
}

.box-inner {
    background:#fff;
    margin:0 32px;
    padding:12px;
    height: 100%;
    box-sizing: border-box;
}

.box-bottom {
    height:32px;
    background-image:
        url("borders/f-kado3_hp.png"),
        url("borders/f-kado4_hp.png");
    background-position:
        top left,
        top right;
    background-repeat:
        no-repeat,
        no-repeat;
    background-size:
        auto,
        32px 32px;
}

.left-sidebar {
  grid-area: leftSidebar;
  
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-size: 20px;
  font-family: "kindergarten", cursive;
  text-align: center;
  margin-top: -20px;
  
}


.sidebar-section:nth-of-type(2) {
    margin-top: -20px;
}

.sidebar-section {
 
}



.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

/* Center images in sidebar sections */
.sidebar-section img {
  display: block;
  margin: 0 auto;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}


/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */
 
nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {

}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}

/* NAVIGATION IN HEADER */

header nav {
  margin-bottom: 0;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* Subnavigation (Drop-Down): */

header nav ul ul {
  background: var(--content-background-color);
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 0.5em;
  z-index: 1;
  border: var(--border);
  min-width: 100%;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

header nav ul li:hover ul,
header nav ul li:focus-within ul {
  display: block;
}

header nav ul li strong {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: normal;
}

header nav ul ul li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}


main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: "pixelmix", cursive;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: normal;
  text-align: center;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 30px;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

.layout {
    transform: scale(1);
    transform-origin: top center;
}
  
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}

.button-marquee {
    overflow: hidden;
}

.button-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.button-group {
    display: flex;
    flex-shrink: 0;

}

.button-group img {
    margin-right: 4px;
    
}

.album-marquee {
    overflow: hidden;
}

.album-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: scroll 25s linear infinite;
}

.album-group {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
    margin-top: 25px;
}

.album-group img {
    width: 119px;
    height: auto;
    padding: 0;
}
    /*background: #c0c0c0;

    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;*/


.album-group img {
       width: 119px;
    height: auto;
   
   /* rainbow border
    border: 4px solid transparent; 
    border-image-source: url("https://file.garden/ZZ2PUl9MPilKgIvB/collection/borders/47005893_hZuxRd1BAVVuLPW.png"); 
    border-image-slice: 10 fill; */
    
  /* scallop border */  
    border-width:7px;
    border-style:solid;
    border-image: url("borders/scallop.png") 8 fill round;
} 


@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@font-face {
  font-family: "kindergarten";
  src: url("fonts/kindergarten.ttf") format("truetype");

}

@font-face {
  font-family: "pixelmix";
  src: url("fonts/pixelmix.ttf") format("truetype");
}

@font-face {
  font-family: "nayupixel";
  src: url("fonts/nayupixel.ttf") format("truetype");
}

@font-face {
  font-family: "pixeloid";
  src: url("fonts/pixeloid.ttf") format("truetype");
}
@font-face {
  font-family: "pixelberry";
  src: url("fonts/pixelberry.ttf") format("truetype");
}

.fit-carousel {
  width: 100%;
  height: auto;

}
.stem2{
    transform: translateX(-12px);
}  
.fit_red{
    transform: translateY(10px);
    
} 
.fit_diva{
    transform: translateY(15px);
    
}  

.fit1 {
    transform: translateX(5px);
}

.fit2 {
    transform: translateX(-9px);
    height:279px;
    width: 95px;
    
}
 
.fit3 {

    height:auto;
    width: 124px;
    margin-left: 15px;
}

.fit5 {

    height:auto;
    width: 124px;
    margin-left: 15px;
}

.fit6{
      height:274;
    width: 88;
    margin-left: 15px;
}

.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.swiper-pagination-bullet-active {
    background: #FF71CB;
}
.swiper-pagination-bullet {
    background: #FF8FD6;
}

.pixel-stack {
    display: flex;
    gap: 5px; /* optional spacing */
    align-items: center;
    
    margin: 0;
}

/* p font */
p, ul {
    font-family: "pixelberry", cursive;
    font-size: 16px;   
    line-height: 1.5;  /* makes paragraphs easier to read */
}

.identity-buttons, contact-buttons {

  image-rendering: pixelated;
}



.contact-buttons {
    display: inline-block;
    margin: 3px 3px;
    image-rendering: pixelated;
}

.contact-cluster {
    text-align: center;
}
.contact-cluster legend {
    text-align: left;
}

.contact-buttons:hover {
    transform: translateY(2px);
    filter: brightness(0.95);
}

/* divider */






/* stamp stuff */ /* stamp stuff *//* stamp stuff *//* stamp stuff *//* stamp stuff *//* stamp stuff *//* stamp stuff *//* stamp stuff *//* stamp stuff *//* stamp stuff */
.stamp {
    position: relative;
    display: inline-block;
    width: 99px;
    height: 56px;
    
    
}
    
.stamp-group {
    display: flex;

    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;

}
    

.stamp-img {
    display: block;
    width: 99px;
    height: 56px;
    top: 15px
    
    
}

.stamp::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 109px;
    height: 66px;
    background: url("stamp_frames/scallop.png") no-repeat center;
    image-rendering: pixelated;
    background-size: contain;
    pointer-events: none;
}
.blinkie-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.blinkie-group img {

}




/*nagivation buttons */
.image-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;      /* horizontal */
    gap: 30px;
    align-items: center;
}

.image-nav li {
    margin: 0;
}

.image-nav img {
    width: 160px; 
    height: auto;
    image-rendering: pixelated;
    transition: transform .15s ease;
}

.image-nav a:hover img {
    transform: scale(1.08);
}

.video-embeds iframe {
  height: 100px; 
  width: 180px; 
}




/* -------------------------------------------------------- */
/* lastfm widget */
/* -------------------------------------------------------- */



.widget-contents {
  width:126px;
  margin:0 auto;
}


.lastfm-header {
    
    width:126px;
    height:20px;
    
    margin:0 auto;

    background:url("lastfm_widget/header_footer_126x20.png") no-repeat;
    image-rendering: pixelated;
    
    background-size:126px 20px;
    
    display:flex;
    align-items:center;
    justify-content:center;

    font-family: "pixelberry", cursive;
    font-size:8px;
    color: #000;
}


.lastfm-middle {
    width:126px;
    height:126px;
    position: relative;

    
    background:url("lastfm_widget/pink_frame2.png") no-repeat;

}


#album-art {
    width:119px;
    height:119px;

    position:relative;
    top: 3px;


    object-fit:cover;
}


.lastfm-footer {


    width:126px;
    height:20px;
    transform: translateY(-2px);
    margin:0 auto;

    background:url("lastfm_widget/header_footer_126x20.png") no-repeat;
    image-rendering: pixelated;
    
    background-size:126px 20px;
    
    display:flex;
    align-items:center;
    justify-content:center;

    font-family: "pixelberry", cursive;
    font-size:10px;
    color: #000;
}

.track-marquee {
    width:140px;
    overflow:hidden;
    white-space:nowrap;
}


.track-info {
    display:inline-block;
    padding-left:100%;
    animation: songscroll 8s linear infinite;
    font-family: "pixelberry", cursive;
    font-size:8px;
}


@keyframes songscroll {
    from {
        transform:translateX(0);
    }

    to {
        transform:translateX(-120%);
    }
}


/* status cafe */
#statuscafe {
    padding: .5em;
    background-color: azure;
    border: 1px solid midnightblue;

}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;

}

.statuscafe{
  display: block;
  width: 125px;
  height: 65px; 
  border: none;
  
  margin: 0;
  padding: 0;
}

.imood {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  font-size: 10px;
  font-family: "pixelberry"; 
  
}


.cluster, .contact-cluster, .changelog, .webring-fieldset {
  border: 1px dashed #FF71CB;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box; 
  margin-bottom: 5px;
  overflow: hidden;
  justify-content: center;
}  
.cluster, .contact-cluster, .changelog legend, .webring-fieldset legend{
  font-family: "pixelberry";
  color:#FF71CB;
}  
.contact-cluster{
      position: relative;
    top: 15px;
}

.neighbors {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.neighbor-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.neighbor-track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  animation: neighbor-scroll 20s linear infinite;
}

.neighbor-track a {
  display: block;
  flex: 0 0 auto;
}

.neighbor-track img {
  display: block;
  width: 88px;
  height: 31px;
}

@keyframes neighbor-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.webring-fieldset{
  margin-top: 15px;

}  

.webring-contents{
height: 75px;
    max-height: 75px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
}
.intro, .hi{
  text-align: center;
  
}

.intro {
  color: #000;
  font-size: 12px;
  margin-bottom: 15px;
}  
  
.hi, h1{
  font-family: "nayupixel" !important;
  color : #FF71CB;
  font-weight: normal !important;
  text-align: center;
}


.log {
  height:105px;
  overflow-y: auto;
  padding: 8px;
  

}  
.log p, b{
    font-size: 12px;
    font-family: "pixelberry";
    
}
.log b {
  color: #FF71CB;
}  


.left-sidebar-box12,
.main-box12,
.right-sidebar-box12 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.left-sidebar-box12 .box-center,
.main-box12 .box-center,
.right-sidebar-box12 .box-center {
    flex: 1;
}  

.bottom-nav {
  margin-top: 15px;
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
}
 
#cdr{
  text-size: 12px;
}
td{
  font-size: 9px;
  font-family: "pixelberry";
}
/* widget stuff in general */
.webring-widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.webring-widgets > * {
  flex: 0 0 auto;
}

/* Webmaster Webring */
#wwbtn {
  text-align: center;
  flex: 0 0 auto;
}

#wwbtn img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto -25px;
}

.ww-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
/* CD ring */
.cdring-widget {
  margin-left: auto;
  margin-right: auto;
}


.webring-widgets > img {
  display: block;
}
/* cd ring stuff*/

.cdring-widget { 
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0;
  transform:translateY(-5px);
}

.cdring-widget img {
  vertical-align: middle;
}


a{
  color: #FF71CB;
  font-family: "pixelberry";
  font-size: 6px;
}

.diary-a{
    font-size: 12px;
}
/* ================================================= */
/* ruffle crap */
/* ================================================= */


#game {
    display: block;
    width: fit-content;
    height: fit-content;

    margin: 30px auto;
    border: 3px ridge #FF71CB;
   
    background: #fff;
    
}
#game > * {
    display: block;
}
.game-blurb {
  font-size: 12px;
  text-align: center;
  }
  
/* ================================================= */
/* DECORARTIVE GAME FRAMEDECORATIVEGAMEFRAMEDECORATIVE */
/* ================================================= */  

/*
 .box17_arcade { 
margin:1em 0; /* 中央寄せは0をautoに変更 
width:80% 
}
.u01_arcade {
background:url(borders/f-ue_frill.gif) repeat-x;
height:67px;
margin:0 67px
}
.s01_arcade {
background:url(borders/f-sita_frill.gif) repeat-x;
height:67px;
margin:0 67px
}
.box-top_arcade {
background-image:url(borders/f-kado1_frill.gif), url(borders/f-kado2_frill.gif);
background-position:top left, top right;
background-repeat:no-repeat, no-repeat;
height:67px
}
.box-center_arcade {
background-image:url(borders/f-migi_frill.gif), url(borders/f-hidari_frill.gif);
background-position:top right, top left;
background-repeat:repeat-y, repeat-y
}
.box-inner_arcade {
background:#fff;
margin:0 67px
}
.box-bottom_arcade {
background-image:url(borders/f-kado3_frill.gif), url(borders/f-kado4_frill.gif);
background-position:top left, top right;
background-repeat:no-repeat, no-repeat;
height:67px
} 
*/

/* ================================================= */
/* button stuff */
/* ================================================= */

.game-controls {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 20px;
}

.game-controls button {

    font-family: "pixelberry", sans-serif;

    background: #fff;

    border: 2px solid #FF71CB;

    padding: 8px 15px;

    cursor: pointer;
    padding: 10px;

    border-radius: 15px;

    background: linear-gradient(
        to bottom,
        white .5%,
        #FF71CB
    );

    width: 125px;

    text-align: center;
}
button {
  color: #fff; 
  font-size: 12px;
}
.game-controls button:hover {



    transform: translateY(-2px);
}

/* diary stuff */

.diary-entry {
  max-height: 500px;
  overflow-y: auto;
  padding: 10px;
}


/* gallery stuff */
.art {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.art img {
  flex: 0 0 auto;
  max-height: 300px;
  width: auto;
  height: auto;

  border: 3px ridge #FF71CB;
  background: #fff;
}


/* about */
.basic11{
  display: block;
  margin: auto;
}


.pic_blurb {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 600px;
margin: 0 auto;
}

.selfie-carousel {
    width: 170px;
    flex-shrink: 0;
}

.selfie-carousel .swiper-slide {
    width: 170px;
    display: flex;
    justify-content: center;
}


.about_blurb {
  font-size: 13px;

}  
.about_me {
     width: 170px;
    height: auto;
    border-width:7px;
    border-style:solid;
    border-image: url("borders/scallop.png") 8 fill round;
}  

.divider {
  height: 14px;
  background-image: url("/dividers/dash2.png");
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}
li img {

}
.item {
  white-space: nowrap;
  font-size: 12px;
  color: #000;
  line-height: 1;
  
  margin: 0 0 5px 0 !important;
  white-space: nowrap;
}

.item img {
  display: inline !important;
  width: 15px !important;
  height: 15px !important;
  margin: 0 0 0 0 !important;
  transform: translateY(-2px);
  vertical-align: middle;
  margin-bottom: -10px;
}
.about_cluster{
  border: 1px dashed #FFCBEC;
  width: 100%;
 
    overflow-y: auto;
    overflow-x: hidden;
  max-height: 120px;
  box-sizing: border-box; 
  margin-bottom: 5px;
  
  justify-content: center;
}
.about_cluster legend {
   font-family: "pixelberry";
  color:#FF71CB
}
.miffy {
 margin: 0 auto;
  width: 125px;
  height: auto;
  display: block;
  justify-content: center;
  margin-top: 30px;
  
}


  
  