/* FONT IMPORT */
@import url('https://fonts.cdnfonts.com/css/thegoodmonolith');

/*                                                         
                                                            
       ::::::::  :::::::::: ::::    ::: :::::::::  :::::::::: ::::::::::: 
    :+:    :+: :+:        :+:+:   :+: :+:    :+: :+:            :+:      
   +:+        +:+        :+:+:+  +:+ +:+    +:+ +:+            +:+       
  +#++:++#++ +#++:++#   +#+ +:+ +#+ +#++:++#:  +#++:++#       +#+        
        +#+ +#+        +#+  +#+#+# +#+    +#+ +#+            +#+         
#+#    #+# #+#        #+#   #+#+# #+#    #+# #+#            #+#          css by rice.place
########  ########## ###    #### ###    ### ########## ###########       senrei fanlistings 2026
                                                       
*/

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {

    /* Background Colors: */
    --background-color: black;

    /* Text: */
    --font: 'TheGoodMonolith', sans-serif;
    --font-size: 16px;

    /* Theme Settings: */
    --round-borders: 16px;
    --sidebar-width: 100px;

    /* Text Colors: */
    --text-colors: #ff833cb9;
    --link-color: #cc8c51;
    --link-color-hover: #e7f3f2d3;
    --link-color-active: #ffe6dc;

    /* Theme-related Colors: */
    --accent: #ddf4f7;
    --accent-bg: rgb(250, 217, 155);
    --border-color: rgba(241, 177, 59, 0.37);
    --content-bg: #000000;

}


/* Text Decorations */

blockquote {
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 1em 0;
    border-radius: 10px;
}

mark {
    /* Text highlighted by using the <mark> element */
    text-shadow: 1px 1px 4px rgb(250, 162, 0);
    background-color: inherit;
    color: #faa200;
}

::selection {
    /* (Text highlighted by the user) */
    background: rgba(204, 131, 14, 0.13);
    text-shadow: 1px 1px 4px rgb(250, 162, 0);
}

/* Additional Fonts */
@font-face {
    font-family: danisha;
    src: url(Danisha.otf);
}

/* Link Styling */
a {
    text-decoration: none;
    cursor: crosshair;
}

a,
a:visited {
    color: var(--link-color);
}

a:hover {
    color: var(--link-color-hover);
    font-weight: bold;
}

a:active {
    color: var(--link-color-active);
}

/* these are what you need. background color/image, font color and what font you want to use */
body {
    font-family: var(--font);
    font-size: var(--font-size);
    color: var(--text-colors);
    background-color: var(--background-color);
    background-image: url("bg.gif");
    background-size: repeat;
    background-attachment: fixed;
    padding: 10px;
    overflow: auto;
}

/* this is the container. the mother grid. */
.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        ". 오이 오이 오이 오이 ."
        ". 오이 오이 오이 오이 ."
        ". 오이 오이 오이 오이 ."
        ". 오이 오이 오이 오이 ."
        ". 오이 오이 오이 오이 ."
        ". 오이 오이 오이 오이 .";
    height: 800px;
    width: 900px;
    margin: auto;
    padding: 0px;
    position: relative;
}

/* these are the mother grids kids! */
.오이 {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1fr;
    grid-template-rows: 1.9fr 0.1fr 1.6fr 1fr 1.8fr 0.1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "우유 우유 우유"
        "딸기 딸기 딸기"
        "수박 복숭이 복숭이"
        "수박 복숭이 복숭이"
        "수박 복숭이 복숭이"
        "사과 사과 사과";
    grid-area: 오이;
}

/* header */
.우유 {
    grid-area: 우유;
    border: 1px solid var(--border-color);
    border-bottom: none;
    background-color: var(--content-bg);
    background-image: url("header.jpg");
}

/* that little cute text under the header! */
.딸기 {
    grid-area: 딸기;
    border: 1px solid var(--border-color);
    padding: 20px;
    background-color: var(--content-bg);
    text-align: right;
    line-height: 25px;
    font-size: 25px;
    font-family: danisha;
}

/* this is where the .떡 and .ㅅㅂ is. */
/* you can erase those and make an entirely new navigation style! */
.수박 {
    grid-area: 수박;
    border: 1px solid var(--border-color);
    border-top: none;
    border-right: none;
    border-bottom: none;
    background-color: var(--content-bg);
    padding: 0px 0px 5px 0px;
}

/* this is the mother grids grandkids */
.복숭이 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 0.7fr 1.3fr;
    grid-template-rows: 1.1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        "포도 포도 ㅠㅠ"
        "씨발 씨발 씨발"
        "씨발 씨발 씨발";
    grid-area: 복숭이;
    border: 1px solid var(--border-color);
    border-top: none;
    border-bottom: none;
    background-color: var(--content-bg);
    padding: 5px;
}

/* this is the site info on the left! */
.포도 {
    grid-area: 포도;
    padding: 5px;
    line-height: 110%;
}

/* this is for the calendar! on the right! */
.ㅠㅠ {
    grid-area: ㅠㅠ;
    padding: 0px;
    float: right;
}

/* more area under the site info and calendar divs! */
.씨발 {
    grid-area: 씨발;
    padding: 5px;
    line-height: 110%;
}

/* this is the footer! */
.사과 {
    grid-area: 사과;
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 7px;
    background-color: var(--content-bg);
    font-size: 12px;
}

/* this is the navigation area where they have their own divs */
/* of course you can change this! doesn't have to be in it's own div box! */
.떡 {
    background-color: #3a1c0759;
    background-image: url("");
    border: 1px groove var(--border-color);
    border-left: none;
    border-right: none;
    border-radius: 0px;
    color: var(--link-color);
    padding: 5px;
    text-align: center;
}

.huh {
    background-color: #3a1c0759;
    background-image: url("");
    border: 1px groove var(--border-color);
    border-left: none;
    border-right: none;
    border-radius: 0px;
    color: var(--link-color);
    padding: 5px;
    text-align: center;
}

/* this is the navigation area but on hover */
.떡:hover {
    border-left: none;
    border-right: none;
    border-radius: 0px;
    color: var(--link-color-hover);
    font-weight: bold;
    padding: 5px;
    text-align: center;
}

.huh:hover {
    border-left: none;
    border-right: none;
    border-radius: 0px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    cursor: default;
}

/* this is that litle description info under the navigation area. it has its own div */
.ㅅㅂ {
    padding: 5px;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    line-height: 1;
    font-size: 1.25rem;
    background-color: var(--content-background-color);
    color: var(--text-color);
    transform: translateY(-3rem);
    transition: transform 0.1s ease-in;
    z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
    transform: translateY(0);
}

.section {
    border: dotted var(--border-color);
    border-radius: 1em;
    align-items: center;
    padding: 7%;
    margin: auto;
    overflow: scroll;
    width: 200px;
    height: 350px;
}