/* Fonts */
@font-face {
    font-family: "Cordata PPC-400";
    src: url("WebPlus_Cordata_PPC-400.woff");
}

/* Root */
:root {
    --window-background-color: #fcf7fd;

    --window-border-color: rgb(0, 0, 0);

    --background-color: #7a9eec;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--background-color);
    font-family: "Cordata PPC-400";
    font-size: 16px;
    width: 900px;
    margin: 10px auto 30px auto;
}

.container {
    max-width: 100%;
}

.container-center {
    margin: 0 auto;
}

/* Window */ 
.window {
    border: 1px solid var(--window-border-color);
    background: var(--window-background-color);
    box-shadow: 5px 5px rgb(0, 0, 0);
    margin: 10px;
}

.window .window {
    box-shadow: none;
}

.window-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    padding-left: 22px;
}

.window-title p {
    margin: 0;
    padding: 5px;
    text-align: right;
    background: var(--window-background-color);
    border-bottom: 1px solid var(--window-border-color);
}

.window-title a {
    text-align: center;
    color: var(--window-border-color);
}

.window-header {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.window-header #domain {
    text-align: center;
    font-size: 4rem;
    white-space: nowrap;
}

.window-button {
    bottom: 0;
    width: 100%;
    background: var(--window-background-color);
    white-space: nowrap;
    font-weight: bold;
    border-top: 1px solid var(--window-border-color);
    overflow: hidden;
    display: flex;
}

.window-button a {
    font-size: 20px;
    color: var(--text-color-dark);
    padding: 6px 16px;
    border-right: 1px solid var(--window-border-color);
}

.window-button a:hover {
    background-color: var(--window-border-color);
    color: var(--window-background-color);
}

/* Window-content */
.window-content {
    width: 100%;
    padding: 4px;
    line-height: 16px;
}

.window-content button {
    bottom: 0;
    padding: 8px;
    margin: auto;
    background: var(--window-background-color);
    white-space: nowrap;
    font-weight: bold;
    border: 1px solid var(--window-border-color);
    box-shadow: 5px 5px rgb(0, 0, 0);
    display: block;
}


#content .window-content {
    padding: 10px;
}

.window-image {
    display: inline; 
    margin-bottom: 10px; 
    margin-right: 15px;
    border: 1px solid var(--window-border-color);
}

.window-content h2 {
    font-size: 27px;
    font-weight: 700;
    margin: 10px 0;
}

.window-content p,
.window-content a {
    margin: 8px 0;
    hyphens: auto;
    text-align: justify;
    font-size: 15px;
    font-weight: 100;
}

.window-content p:not(.dont-blacken):any-link:hover,
.window-content a:not(.dont-blacken):any-link:hover {
    background-color: var(--text-bg-hover);
    color: var(--text-color-light);
}

.window-content h3,
.window-content h4 {
    margin: 4px 0;
}

/* Utils */
.edgy {
    padding: 10px;
/*    width: 690px; */
    color: var(--window-background-color);
    background-color: var(--window-border-color);
}

.grid-justify {
/*    display: flex; */
    justify-content: space-between;
}
