/* 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_2_cafe.png);
    --background2: 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);
    font-family: "Winky Sans", sans-serif;
    overflow-x: hidden;
}

/* site wide stylings */
p {
    line-height: 1rem;
    padding: 0.313rem 0rem;
}

br {
    line-height: 1em;
}

a {
    color: var(--SC_Links);
    transition: color 0.5s;
}

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;
}

h2,
h3 {
    text-align: left;
    margin-bottom: 5px;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--SC_Accent);
}

#main_container {
    margin-top: 2.5rem;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2.5rem;
    width: 800px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

#site_header {
    width: 100%;
    text-align: center;
}

#site_header img {
    width: 100%;
}

/* content class stylings */
.scStyle {
    border: 0.125rem dotted var(--SC_Border);
    border-radius: 0.625rem;
    flex: 1;
}

.sTitle,
.sContent {
    padding: 0.25rem 0.625rem;
}

.sContent {
    overflow-x: hidden;
}

#site_container {
    background-color: var(--SC_Background);
    border: 0.25rem solid var(--SC_Border);
    border-radius: 0.625rem;
}

#dateandtime {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    margin: 20px 0px;
}

figure {
    border: 2px solid var(--SC_Border);
    width: 50%;
    border-radius: 5px;
}

figure img {
    max-width: 100%;
}

figcaption {
    font-size: 12px;
    padding: 5px;
    text-align: center;
    background-color: var(--SC_Accent2);
}

.float_left {
    float: left;
    margin-right: 10px;
}

.float_right {
    float: right;
    margin-left: 5px;
}

section {
    float: none;
    overflow: hidden;
}

.website_credits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.website_credits img {
    max-width: 99px;
}

ul {
    margin-left: 30px;
}

.highlight {
    background-color: var(--SC_Border);
    padding: 5px;
}

.status {
    margin-bottom: 10px;
}

#currently {
    background: var(--background2);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    justify-items: center;
}

#currently h2 {
    text-align: center;
}

#currently_inner {
    padding: 3px 0px;
    background-color: #f7f4ef;
    width: 100%;
    border-radius: 5px;
}

/*footer*/
#footer {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

#footer a {
    text-decoration: none;
}

.disclaimer p {
    font-size: 0.625rem;
}

@media only screen and (max-width: 800px) {
    #main_container {
        width: 95%;
    }
}
