/*FONTS*/
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    /*background*/
    --main-background: ;
    /* white / background */
    --col-bg: #f7f7f7;
    --col-text: ;
    /* pale dark blue / bold */
    --col-bold: #426a8a;
    /* light blue / accent */
    --col-accent: #73c2fb;
    /* light gold / borders */
    --col-border: #ffd700;
}

body {
    font-family: "Railway", sans-serif;
}

.title {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #939393;
    max-width: calc(40%);
}

.title h1 {
    font-family: "Bitter", serif;
    font-size: x-large;
    margin-left: calc(3%);
}

.title img {
    max-width: 30px;
    vertical-align: baseline;
}

h2 {
    font-family: "Bitter", serif;
    font-size: larger;
    margin-left: calc(3%);
}

h3 {
    font-family: "Bitter", serif;
    font-size: large;
}

.italics {
    font-style: italic;
}

.contentStyle {
    padding: 5px 10px;
}

.spoiler {
    background-color: black;
    color: black;
}

.spoiler:hover {
    background: transparent;
}

#shrine {
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    background-color: beige;
}

/*Introduction*/
#introContent,
#opinionContent {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#introText,
#opinionText {
    max-width: 50%;
    max-height: 370px;
    overflow-y: scroll;
    padding: 10px;
}

#introText p,
#opinionText p {
    text-align: justify;
}

#introPictures,
#opinionImages {
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#introPictures img,
#opinionImages img {
    max-width: 190px;
}

/*Appearances*/
.seriesLink img {
    max-width: 300px;
}

.seriesLink img:hover {
    background-color: #73c2fb;
}

#appearanceMain,
#appearanceSpin {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 10px;
}

.seriesLink {
    position: relative;
}

.seriesName,
.seriesYear {
    font-family: "Bitter", serif;
    text-align: end;
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 5px;
    position: absolute;
    z-index: 1;
}

.seriesName {
    bottom: 10px;
    right: 10px;
}

.seriesYear {
    bottom: 62px;
    right: 10px;
}

/*modals*/
#modalContainer {
    display: none;
}

#modalContainer.active {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    z-index: 2;
}

.modalBody {
    width:500px;
    background-color: lightgrey;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding:10px;
}

.closeBtn {
    background-color: pink;
}

.closeBtn:hover {
    cursor: pointer;
}

/*Headcanons*/

/*Shipping*/
#shipContent {
    flex-wrap: wrap;
}

#shipContent,
.shipContainier,
#imgGallery {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
}

.shipComments {
    max-width: 200px;
    max-height: 300px;
    overflow-y: scroll;
    padding: 10px;
}

.shipBox {
    margin: 10px;
}

.shipBox img {
    width: 100px;
    height: 100px;
}

/*Images*/
#imgGallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
}

figure {
    padding: 4px;
}

figcaption {
    padding: 4px;
    margin: auto;
    text-align: center;
    width: 296px;
    background-color: #73c2fb;
}

/*Quotes*/

/*scrollbar*/
*::-webkit-scrollbar {
    width: 2px;
}

*::-webkit-scrollbar-thumb {
    background: var(--col-border);
}
