@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Jost", sans-serif;
}

body{
    background-color: black;
}

.content_container{
    background-color: white;
    padding: 40px 40px 40px 40px;
    width: 50%;
    height: 100vh;
    height: fit-content;
    margin: 0 auto;
}

.content_container p{
    color: black;
    line-height: 1.5;
}

.important_text{
    font-weight: 900;
}

.main_image{
    width: 100%;
    display: block;
    margin: 20px auto;
    border-radius: 15px;
}

.character_page_content {
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-template-rows: auto auto auto auto;
    row-gap: 10px;
    align-items: start;
}

.character_data {
    grid-column: 2;
    grid-row: 1 / span 4;
    padding-top: 10px;
    text-align: center;
    border-width: 2px;
    border-style: solid;
}

.character_data table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.character_data th, .character_data td {
    border: none;
    padding: 8px;
    text-align: left;
}

.content_container .wiki_divider {
    grid-column: 1;
    padding: 5px 10px;
    margin: 0;
    font-weight: bold;
    color: white;
}

.bio_text {
    grid-column: 1;
    margin: 0;
    padding-right: 20px;
}

.character_portrait {
    width: 100%;
    height: auto;
}

/* COLOR SPECIFIC CLASSES */
.tako_theme .character_data {
    border-color: #f1677e;
}

.tako_theme .wiki_divider {
    background-color: #f1677e;
}

.tako_theme .colored-row {
    background-color: #f8c0c9;
}

.yaki_theme .character_data {
    border-color: #476699;
}

.yaki_theme .wiki_divider {
    background-color: #476699;
}

.yaki_theme .colored-row {
    background-color: #b0c7e9;
}

.tako_link {
    color: #f1677e;
}

.yaki_link {

    color: #476699;

}



.collage_container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 10px;

    margin-top: 20px;

}



.collage_item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.modal_view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal_content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.hidden {
    display: none;
}
