/* 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);
    --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);
    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*/
#overlay_images {
    z-index: 4;
    position: absolute;
}

.overlay {
    width: 200px;
}

.ol_7 {
    position: relative;
    top: 66px;
    left: -157px;
    transform: rotate(-18deg);
}

.ol_8 {
    position: relative;
    top: 562px;
    left: -257px;
    transform: rotate(19deg);
}

.ol_9 {
    position: relative;
    top: -31px;
    left: 431px;
    transform: rotate(-20deg);
}

.ol_10 {
    position: relative;
    top: -159px;
    left: -375px;
}

.ol_11 {
    position: relative;
    top: 198px;
    left: 57px;
    width: 100px;
}

.ol_12 {
    position: relative;
    top: 503px;
    left: -179px;
    transform: rotate(21deg);
}

/*main container*/
#main_container {
    width: 900px;
    height: 800px;
    display: grid;
    grid-template: 1fr / 300px 1fr;
    gap: 10px;
    margin-top: 2.5rem;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2.5rem;
}

.highlight {
    background-color: var(--SC_Accent2);
}

#theLeft,
#theRight,
#footer {
    background-color: var(--SC_Background);
    padding: 10px;
    border: 0.25rem solid var(--SC_Border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

/*left*/
#basic_pic {
    width: 249px;
    height: 249px;
}

#basic_profile {
    margin-bottom: 10px;
    width: 100%;
}

#basic_links {
    width: 100%;
}

#basic_links a {
    display: block;
    text-decoration: none;
    padding: 0.188rem 0.625rem;
    background-color: var(--SC_Accent);
    margin-bottom: 0.313rem;
    border-radius: 3.125rem;
    transition: background-color 0.5s;
}

#basic_links a:hover {
    background-color: var(--SC_Accent2);
}

/*footer*/
#footer {
    width: 100%;
    grid-area: 2 / 1 / 2 / span 2;
    text-align: center;
}

.disclaimer p {
    font-size: 0.625rem;
}

/*media screen*/
@media only screen and (max-width: 1300px) {
    #overlay_images {
        visibility: hidden;
    }
}

@media only screen and (max-width: 900px) {
    #main_container {
        display: flex;
        flex-direction: column;
        width: 95%;
    }
}

@media only screen and (max-width: 700px) {
}
