:root {
    /*--highlightbackground: rgb(68,74,152);
    --background: rgb(152,146,68);
    --alterBackground: rgb(44,48,99);*/
    /*--highlightbackground: rgb(68, 74, 152);*/
    --highlightbackground: #11425F;
    --background: #F1E5AC;
    --alterBackground: rgb(152,146,68);
    --specialcolor: rgb(180, 180, 170);
}
body{
	background-color: var(--background);
	color: black;
    padding: 0;
    margin: 0;
    /*overflow: hidden;*/
}
* {
    box-sizing: border-box;
}
.header {
    width: 100%;
    height: 7.5em;
    align-content: center;
    background-color: var(--alterBackground);
    position: relative;

    .brand {
        position: relative;
        width: 70%;
        background-color: var(--specialcolor);
        text-align: center;
        padding: 0.5em;
        clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 0%);
        font-family: "Helvetica";
        font-size: 3em;
        color: black;
        /*box-shadow: 5px 10px #888888;*/
        text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px  1px 0 #fff, 1px  1px 0 #fff;

    }
    
    .brand::after {
        content: "";
        position: absolute;
        top: 2.5em;
        left: 0;
        width: 100%;
        height: 1em;
        background-color: var(--alterBackground);
    }
    margin-bottom: 2em;
}
.header::after {
    content: "";
    background-color: var(--highlightbackground);
    width: 70%;
    height: 0.2em;
    position: absolute;
    bottom: -1.5em;
    right: 0;

}
.header::before {
    content: "";
    background-color: var(--highlightbackground);
    width: 90%;
    height: 0.5em;
    position: absolute;
    bottom: -1.1em;
    left: 0;

}
.subtitle {
    float: right;
    width: 10em;
    background-color: var(--highlightbackground);
    color: white;
    clip-path: polygon(0% 0%, 90% 00%, 100% 50%, 90% 100%, 0% 100%, 0% 0%);
    padding: 0.5em;
    position: relative;
    z-index: 2;
}
.subtitle-content {
    margin-top: -2.5em;
    width: 100%;
    float: right;
    background-color: white;
    /*opacity: 0.1;*/
    padding: 2em 15em 2em 1em;
    position: relative;
    z-index: 1;
    border-bottom-right-radius: 100% 150%;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 0.5em;
    clear: both;
    transform-style: preserve-3d; 
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px  1px 0 #fff, 1px  1px 0 #fff;
    text-align: justify;
    /*padding-right: 8em;*/

}
.subtitle-content::after {
    content: ""; 
    position: absolute;
    top: -1em;
    left: -0.1em;
    width: 100%;
    height: 100%;
    background-color: var(--alterBackground);
    z-index: -1; 
    /*opacity: 0.8; */
    transform: translateZ(-1px); 
    /*border-bottom-left-radius: 30px;*/
    /*border-top-left-radius: 30px 30px;*/
}
.subtitle-content::before {
    content: ""; 
    position: absolute;
    bottom: -1.03em;
    left: -0.1em;
    width: 100%;
    height: 2.0em;
    background-color: var(--alterBackground);
    z-index: -1; 
    transform: translateZ(-1px); 
    
}



.draft{
	position: fixed;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);

    font-size: 80px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.08);

    white-space: nowrap;
    pointer-events: none; /* allow clicks through */
    z-index: 9999;

    user-select: none;
    letter-spacing: 100px;
}