
:root {    
    --color-bg-grad-1: #e73c7e;
    --color-bg-grad-2: #23a6d5;
    --color-bg-grad-3: #23d5ab;
    --color-text-main: white;
    --color-warning: red;
    --color-unvisited: #03a;
    --color-visited: #eee;
    --color-semiopaque-20: rgba(255,255,255,0.2);
    --color-semiopaque-40: rgba(255,255,255,0.4);
    --color-nav-bg: #036;
    --color-nav-bg-hover: #369;
    --url-numquam-logo-text: url("../img/Numquam Technology Text.svg");
    --url-numquam-logo-image: url("../img/Numquam Logo Red.svg");
    --hidden-length: -9999em;
}

#main > section:target ~ section:last-child, #main section {
    display: none;
}

#main > :last-child, #main section:target {
    display: block;    
}

#headline h1 {
    display:block;
    margin: 0;
}

#logotext {
    /* hide the text if CSS is active */
    text-indent: var(--hidden-length);
    overflow: hidden;
    width:  20vw; /* 300px;*/
    height: 15vh; /*128px;*/
    background: var(--url-numquam-logo-text) center no-repeat;
    min-width: 120px;
}

#logoimage {
    overflow: hidden;
    width:  20vw;/*250px;*/
    height: 20vh;/* 250px; */
    background: var(--url-numquam-logo-image) center no-repeat;
    min-width: 120px;
}

dt {
    font-size: 120%;
    font-weight: bold;
    padding: 1em;
}

a {
    color: var(--color-unvisited); /*#03a;*/
}

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

.editorialnote {
    font-size: small;
}

#copysymbol {
    position: relative;
    top: 0.28em;
    font-size: 150%;
}

#headline {
    
}

html {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    background-size: cover;
    background-scroll: fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*    background-image: linear-gradient(-45deg, #e73c7e, #23a6d5, #23d5ab);*/
    background-image: linear-gradient(-45deg, var(--color-bg-grad-1), var(--color-bg-grad-2), var(--color-bg-grad-3));
    /*   animation: gradient 15s ease infinite;*/
    background-position: 0px 0px;
    background-color: var(--color-bg-grad-3);
}

body {
    font-family: "Yanone Kaffeesatz", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 120%;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
}


#copyr {
    font-size: small;    
}

.apology {
    color: var(--color-warning);
    transform: rotate(-23deg);
}

#headline {
 
}

#project h3 {
    font-size: 150%;
}

#projects h3{
    font-size: 150%;
}

#projects ol {
    list-style-type:none; 
}

#nav a{
    font-family: "IM Fell English", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 200%;
}
#nav .li {
    
}

#main {
    padding-left: 1em;
}

#main h2 {

  font-family: "IM Fell English SC", serif;
  font-weight: 400;
  font-style: normal;
}

#container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 600px) {    
    html {
	background-scroll: fixed;
	background-size: cover;
	background-repeat: repeat;	
    }

    #headline {
	display: flex;
	align-items: top;
	align-self: center;
    }

    #logotext {
	height: auto;
	width: 250px;
    }
    
    #logoimage {
	height: 120px;
	width: 120px;
    }

    #nav {
	display: none;
    }
    
    #main section {
	display: block;
    }
    body {
	flex-direction: row;
	flex-wrap: wrap;
    }
    #container {
	flex-direction: column;
	align-items: flex-start;
    }
}

.navbox {
    /*border: 1px solid #ccc;    */
}

.navbox > ul,blockquote {
    /*    background-image: radial-gradient(ellipse, rgba(255,255,255,0.4) 15%, rgba(255,255,255,0.2) 85%)*/
    background-image: radial-gradient(ellipse, var(--color-semiopaque-20) 15%, var(--color-semiopaque-40) 85%)
}
ul {
    list-style-type:none;
}



#navcontainer ul
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#navcontainer li { margin: 0 0 .2em 0; }

#nav a
{
    display: block;
    color: var(--color-text-main);
    background-color: var(--color-nav-bg);
    width: auto;
    padding: .2em .8em;
    text-decoration: none;
}

#nav a:hover
{
    background-color: var(--color-nav-bg-hover);
    color: var(--color-text-main);
}

