/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-weight: normal;
}

:root {
    /* colors */
    --primary-color: #eec0d5;
    --secondary-color: #ffffffda;
    --background-color: #aac7a8;
    --text-color: #a8c0c7;
}


/* base */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Consolas', 'Courier New', monospace;
    cursor: url('media/images/ranita.gif'), auto;
    background-image: url('media/images/green-gingham.png');
    background-repeat: repeat;
    padding: 0 8%;
}
#home-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        'header header header header'
        'nav blink content content'
        'music music content content'
        'stamps stamps content content'
        'footer footer footer footer';
    gap: 10px;
}

header  { grid-area: header; }
nav     { grid-area: nav; }
#blink   { grid-area: blink; }
#music-box   { grid-area: music; }
#stamps   { grid-area: stamps; }
#content    { grid-area: content; }
footer  { grid-area: footer; }


/* lace containers */
.lace-container {
    background-color: var(--secondary-color);
    border-width: 30px;
    border-style: solid;
    border-image: url(media/images/lace-border.png) 33 round;
    background-clip: padding-box;
}


/* links */
a {
    color: var(--text-color);
}
a:hover {
    color: var(--primary-color);
}

/* header */
h1 {
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
}

/* nav */
nav{
    width: 160px;
}
nav ul{
    border: 1px solid var(--text-color);
}
nav li {
    padding: 5px;
    text-align: center;
    background-color: transparent;
    border-bottom: 1px solid var(--text-color);
}
nav li:last-child {
    border-bottom: none;
}
nav li:hover {
    background-color: white;
}
nav li:hover a {
    color: var(--primary-color);
}

/* blinkies */
#blinkies img{
    height: 20px;
    width: 150px;
}

/* stamps */
#stamps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: auto;
}
#stamps img {
    height: 50px;
    width: 90px;

}

/* stickers */
.sticker {
    position: absolute;
    overflow: scroll;
}
#sticker1 {
    bottom: 10px;
    left: 10px;
    height: 10%;
}
#sticker2 {
    top: 10px;
    right: 10px;
    height: 15%;
}
#sticker3 {
    bottom: 10px;
    right: 10px;
    height: 10%;
}

/* footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: 0.8rem;
}

/*------ LOG PAGES ------ */
#manga-body, #games-body {
    width: 100%;
}
#manga-list, .games-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
#manga-list img, .games-list img {
    height: 300px;
    width: 210px;
}
