body {
    font-family: pixel32;
    margin-top: 60px;
    margin-left: 100px;
    margin-right: 100px;
    background-color: rgb(247, 241, 232);
    background-image: url('https://hillhouse.neocities.org/materials/backgrounds/images/pride-trans2-d.png');
    background-repeat: repeat-x;
}

img {
    image-rendering: pixelated;
}

a {
    margin: 5px;
    padding: 10px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

a:hover {
    color: white;
    font-size: 18px;
    text-shadow: 0 0 5px white;
    text-decoration: underline dotted white;
    text-underline-offset: 4px;
}

p {
    color: rosybrown;
    font-size: 18px;
}

h1 {
    color: rosybrown;
    font-size: 32px;
    text-align: center;
}

h2 {
    color: rosybrown;
    font-size: 28px;
    text-align: center;
    text-decoration: underline dotted palevioletred;
    text-underline-offset: 4px;
}

h3, h4, h5, h6 {
    color: rosybrown;
    font-size: 20px;
    text-align: center;
}

.container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: center;
}

.aside {
    width: 330px;
    margin: 20px;
    padding: 10px;
    overflow-y: auto;
    border: 2px dashed white;
    background-color: rgb(221, 190, 190);
}

.nav {
    margin: 20px;
    padding: 10px;
    overflow-y: auto;
}

.main-container {
    width: 100%;
    height: 550px;
    margin: 20px;
    padding: 10px;
    position: relative;
    border-width: 9px;
    border-style: solid;
    border-image: url('https://mypillowfort.nekoweb.org/border/50.png') 9 fill round;
}

.scrollbox {
    height: 100%;
    overflow-y: auto;
}

.super-block {
    display: none;
}

.super-block:target {
    display: block;
}

body:has(#foundation:target, #settings:target, #eyeshadow:target, #eyeliner:target, #eyebrow:target, #blush:target, #lip:target) #makeup.super-block {
    display: block;
}

.guide-tip {
    top: 50%;
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
}

.main-container:not(:has(#makeup:target, #skincare:target, #brushes:target, #mirrors:target, #brands:target, #miscellaneous:target, #foundation:target, #settings:target, #eyeshadow:target, #eyeliner:target, #eyebrow:target, #blush:target, #lip:target, #box:target, #clips:target)) .guide-tip {
    display: block;
}

.main-container:has(#makeup:target, #skincare:target, #brushes:target, #mirrors:target, #brands:target, #miscellaneous:target, #foundation:target, #settings:target, #eyeshadow:target, #eyeliner:target, #eyebrow:target, #blush:target, #lip:target, #box:target, #clips:target) .guide-tip {
    display: none;
}

.inner-header {
    color: white;
    font-style: italic;
    font-weight: bold;
    font-size: 28px;
    background-color: rgba(188, 143, 143, 0.5);
    border-radius: 10px;
}

.inner-nav a {
    color:rosybrown;
    font-size: 18px;
    margin: 10px;
    padding: 10px;
}

.inner-nav a:hover {
    color: white;
    text-shadow: 0 0 5px rgb(161, 95, 95);
    text-decoration: underline dotted white;
    text-underline-offset: 4px;
}

.inner-main {
    padding: 10px;
}

.inner-main article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    position: relative;
    display: inline-block;
    box-shadow: 0 5px 0 palevioletred;
}

.product-card img {
    padding: 10px;
    transition: transform 0.2s ease;
}

.product-card:hover img {
    transform: scale(1.2);
}

.product-info {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 2px 6px;
    width: 200px;
    height: auto;
    text-align: left;
    background-color: palevioletred;
    border: 3px dashed white;
    border-radius: 5px;
    pointer-events: none;
    z-index: 10;
}

.product-card p {
    color: white;
}

.product-card:hover .product-info, .brand-icon:hover .brand-info {
    visibility: visible;
    opacity: 1;
}

.brand-icon {
    position: relative;
    display: inline-block;
}

.brand-icon img {
    padding: 10px;
    box-shadow: 0 5px 0 palevioletred;
}

.brand-icon p {
    color: white;
}

.brand-info {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 2px 6px;
    width: 200px;
    height: auto;
    text-align: left;
    background-color: palevioletred;
    border: 3px dashed white;
    border-radius: 5px;
    pointer-events: none;
    z-index: 99;
}

.divider {
    padding: 33px;
    background-image: url('https://heryne.neocities.org/sources/picture/divider-roses.gif');
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

::selection {
    background-color: rgb(169, 161, 174);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 231, 231);
}

::-webkit-scrollbar-thumb {
    background: rgb(241, 189, 189);
    border-radius: 5px;
}

@font-face {
    font-family: 'pixel32';
    src: url('/sources/font/Pix32.ttf') format('truetype');
}