<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    width: 100%;
    height: 100%;
    margin: 0px;
}
.image_grid_row {
    width: 100%;
    display: flex;
    justify-content: center;
}
.top_image_grid {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.top_image_grid .cell {
    border-radius: 3px;
    overflow: hidden;
    display: inline-flex;
    width: calc(25% - 6px);
    margin: 3px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.top_image_grid img {
    width: 100%;
    align-self: flex-start; /* needed for safari (shrug) */
}
.bold {
    font-weight: 500;
}
h1.main_header {
    color: black;
    font-size: 5em;
    letter-spacing: 4px;
    margin-bottom: 0px;
}

/* Columns
*/
.column_container {
    width: calc(100%);
    padding: 20px;
    display: inline-block;
    justify-content: center;
}

.column_card {
    background-color: white;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: justify;
}
.column_container_inner {
    width: 100%;
    display: flex;
    justify-content:  center;
    flex-direction: row;
}

.column {
    flex: 1;
    max-width: calc(50% - 20px);
    height: 100%;
    margin: 10px;
    padding: 10px;
    vertical-align:top;

}
.column.text {
    max-width: 550px;
}
.column.image {
    max-width: 256px;
    margin-bottom: 0px;
    display: inline-grid;
}
.column.half {
    max-width: 450px;
}
.column.third {
    max-width: 300px;
}
.column.single {
    max-width: 900px;
}
.column img {
    width: 100%;
}
.three_column {
    max-width: calc(30% - 20px);
}
.column h1, h2 {
    margin-top: 0px;
}
.text_container {
    margin: 0 auto;
    width: 90%;
    max-width: 700px;
    text-align: justify;
}


p,a,span {
    font-size: 1.3em;
    color: #5c5c5c;
}
p &gt; a,span {
    font-size: 1em;
}

.text_container a {
    color: gray;
}
.row {
    position: relative;
}

.parents img {
    opacity: 0.2;
    cursor: pointer;
}
.parents img:hover {
    opacity: 0.6;
}
.parents img.selected {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    opacity: 1.0;
}

button {
    font-size: 20px;
    width: 170px;
}

.button_container {
}


.social_buttons img {
    width: 48px;
    height: 48px;
    margin-left: 0.5em;
    margin-right: 0.5em;
}
.social_buttons img.discord {
}

#footer {
    margin-top: 25px;
    background-color: rgba(0, 0, 0, 0.78);
    text-align: center;
}

#footer .link {
    display: inline-block;
    margin: 1em;
}
#footer .link a {
    color: #d0d0d0;
    text-decoration: none;
}
#footer .link a:hover {
    text-decoration: underline;
}


/**
Grid of model examples
*/
.image_tile {
    float: left;
    width: 50%;
    text-align: center;
    padding: 1%;
    padding-top: 0px;

}
.image_tile img {
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 958px) {
}
@media only screen and (max-width: 600px) {
    button {
        font-size: .8em;
        width: 120px;
    }
    p,a,span {
        font-size: 1em;
    }
    .big_text {
        font-size: 1.3em;
    }
    .button_container {
    }
    .column_container {
        padding: 0px;
    }
    .column_container_inner {
        align-items: center;
    }
    .column.image.column_card {
        padding: 0px;
    }
    h1.main_header {
        font-size: 2.5em;
    }
    .top_image_grid :nth-child(n+7) {
        display: none;
    }
    .top_image_grid .cell {
        border-radius: 2px;
        width: calc(33% - 4px);
        margin: 2px;
    }
 
}</pre></body></html>