/* ---------------- COLOURS
    Light Brown rgb(131, 95, 83)
    Shirt rgb(233, 216, 182)
    Brown Hair rgb(84, 49, 37)
    Light Hair rgb(250, 231, 207)
    Pants rgb(60, 41, 36)
    Background rgb(247, 241, 235)
    Lineart rgb(42, 11, 16)
*/

/* ---------------- MISC */
body {
    scrollbar-color: rgb(131, 95, 83) rgba(0, 0, 0, 0) ;
    scrollbar-width: thin;
}

/* ---------------- FONTS & TEXT */
@font-face {
    font-family: Adorable Handmade;
    src: url("assets/Adorable\ Handmade.ttf");
}

body{
    font-family: math;
    color: rgb(42, 11, 16);
}
h1 {
    font-family: Adorable Handmade;
    letter-spacing: .05em;
}

a { color: rgb(131, 95, 83);}
a:hover {color: rgb(84, 49, 37); font-style: italic;}
.disabled { pointer-events: none; color: rgb(184, 166, 161); text-decoration: none;}

.text-highlight { background-color: rgb(247, 241, 235); padding: .3em;}

::selection {
    color: white;
    background-color: rgb(84, 49, 37);
}

/* ---------------- LAYOUT */
body {
    background-color: rgb(247, 241, 235);
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
}

#main-container {
    position: relative;
    width: fit-content;
    display: grid;
    gap: .5em;

    padding: 1em;
    background-color: white;
    border: solid;
    border-image: url("assets/[alyulina]border-star.png") 40%fill / 32 round;
    border-image-outset: 3em;
}

/* ---------------- LANG BUTTON */
#switch-lang {
    background-color: rgb(247, 241, 235);
    color: #835f53;
    padding: .5em;
    font-variant: small-caps;
    text-transform: lowercase;
    font-size: 1.05em;
    border: 1px solid;
}

#switch-lang:hover {
    background-color: rgb(240, 228, 212);
    transition: .15s;
}