/* import fonts */
@import url("https://fonts.googleapis.com/css2?family=Agbalumo&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap");

/* themes */
[data-theme="cafe"] {
    --background: url(/Assets/background_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;
}

#overlay_images {
    z-index: 4;
    position: absolute;
}

.overlay {
    width: 200px;
    position: relative;
}

.ol_13 {
    top: -38px;
    left: 592px;
}

.ol_14 {
    top: 267px;
    left: -305px;
    transform: rotate(9deg);
}

/* main container */
#main_container{
    margin-top: 2.5rem;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2.5rem;
    width: 700px;
    height: auto;
    display: flex;
    flex-direction: column;
}

#site_container {
    background-color: var(--SC_Background);
    text-align: center;
    border-radius: 10px;
    border: 0.25rem solid var(--SC_Border);
}

#inworld,
#outworld {
    position: relative;
    text-align: left;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 200px;
     z-index: 5;
}

ul {
    list-style: none;
}

.level2 li {
    margin-left: 1em;
}

.level3 li {
    margin-left: 2em;
    list-style-type: "☆";
    color: var(--SC_Border);
}

/*Footer*/
#footer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 0.625rem;
}

/* media screen */
@media only screen and (max-width: 800px) {
    #overlay_images{
        visibility: hidden;
    }
    
    #main_container {
        width: 95%;
    }
}
