/* themes */
[data-theme="cafe"] {
    --background: url(/assets/background_3_cafe.png);
    --SC_Background: #f7f4ef;
    --SC_Border: #b78b5e;
    --SC_Links: #d98b99;
    --SC_Accent: #eadccc;
    --SC_Accent2: #e2bdc4;
}

/* main body */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: var(--background, #d98b99);
    overflow-x: hidden;
    font-family: "Winky Sans", sans-serif;
}

/* site wide stylings */
p {
    line-height: 1rem;
    padding: 0.313rem 0rem;
}

a {
    color: var(--SC_Links);
    transition: color 0.5s;
    text-decoration: none;
}

a:hover {
    color: var(--SC_Accent);
}

h1,
h2,
h3 {
    font-family: "Agbalumo", serif;
    width: 100%;
    padding: 0.1rem;
    text-align: center;
}

h1 {
    font-size: 1.87rem;
}

/*main_container*/
#main_container {
    margin-top: 2.5rem;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2.5rem;
    width: 900px;
}

.style {
    background-color: var(--SC_Background);
    padding: 10px;
    border: 0.25rem solid var(--SC_Border);
}

#introduction,
#footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

#introduction p {
    text-align: center;
}

#shrine_container {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.shrineCell {
    width: 290px;
    height: 199px;
}

.shrineImg {
    object-fit: contain;
    width: 100%;
}

.shrineGlow {
    transition: all 0.5s;
}
.shrineGlow:hover {
    filter: drop-shadow(0px 0px 23px rgba(217, 139, 153, 0.82));
}

/*Footer*/
#footer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 0.625rem;
}

/*media screen*/
@media only screen and (max-width: 900px) {
    #main_container {
        display: flex;
        flex-direction: column;
        width: 95%;
    }
}

/*scrollbar*/
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: var(--SC_Border);
}
