/*
load seq:
1.css/fixedSidebar.css
2.css/styleGeneralHa.css
*/

html {
    font-family: 'Overlock', 'Helvetica', "Lucida Console", "Lucida", "Lucida Sans Unicode", "Geneva", sans-serif;
    font-size: 15pt;
    line-height: 150%;
    letter-spacing: 0.7px;
    color: #000000;
    text-decoration: none;
    font-weight: 300;
    /*
	margin-left: auto;
	margin-right: auto;
	width: 600px;
    */
}

bigga {
    font-size: 2em;
    font-weight: 200;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 110%;
    font-weight: 200;
}

h1 {
    font-size: 2.2em;
}

h2 {
    font-size: 1.7em;
}

h3 {
    font-size: 1.4em;
}

h4 {
    font-size: 1.2em;
}

h5 {
    font-size: 1.1em;
}

h6 {
    font-size: 0.9em;
}

li {
    list-style-type: circle;
}


/* nice! http://www.patternify.com/
a{
 background:url(
    data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAADklEQVQImWNgQAW+ZHAAJ14BNVd0PgAAAAAASUVORK5CYII=
    ) repeat;
*/


/*// all about tables */

table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
}

th,
td {
    text-align: left;
    text-align: left;
    vertical-align: top;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: rgba(200, 200, 200, 0.35);
}

thead {
    background-color: rgba(166, 166, 166, 0.35);
}

.date_place {
    padding-bottom: 35px;
}

.place {
    float: right;
    border-top: dotted grey 1px;
    border-bottom: dotted grey 1px;
    text-align: right;
    font-style: italic;
    padding: 10px;
    margin-bottom: 20px;
    display: inline;
    padding-left: 15px;
    /*	margin-left: 20px;*/
    background-color: rgba(200, 200, 200, 0.15);
}

.date {
    float: right;
    border-top: dotted grey 1px;
    border-bottom: dotted grey 1px;
    text-align: right;
    font-style: italic;
    padding: 10px;
    margin-bottom: 20px;
    display: inline;
    border-left: dotted grey 1px;
    padding-right: 15px;
    background-color: rgba(200, 200, 200, 0.3);
}

.course {
    padding-bottom: 20px;
    border-top: solid grey 1px;
}


/* div class for 'publications'. Vertical list with left floating imgs*/
.release {
    position: relative;
    border-top: solid grey 1px;
    min-height: 200px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.release>.txt {
    position: relative;
}


.release>.pic {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 160px;
    height: 150px;
    float: left;
    left: 0;
}

.release>.pic2 {
    margin-right: 10px;
    width: 225px;
    height: 150px;
    float: left;
    left: 0;
}

/*release paper*/
.releasePaper {
    position: relative;
    border-top: solid grey 1px;
    min-height: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.releasePaper>.txt {
    position: relative;
}


/*course texts*/
.semester {
    font-size: 1.4em;
    font-weight: 100;
    color: #777777;
}

.course_title {
    font-size: 1.4em;
    font-weight: 300;
}

q {
    font-style: italic;
    font-weight: lighter;
    letter-spacing: 0.2em;
    font-size: 1.23em;
}


/*///////////////// media ////////////////////*/

audio {
    width: 100%;
    display: block;
}


/* YouTube responsifier */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*// experimental, ha self made. try to reduce clutter in indiv. Vimeo entries*/

.weego-vimeo {
    position: relative;
    padding: 56.25% 0 0 0;
}

.weego-vimeo iframe,
.weego-vimeo object,
.weego-vimeo embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



code {
    font-family: Ubuntu Mono;
    /* Consolas, "courier new", monospace; */
    text-align: justify;
    /* letter-spacing: -0.125px; */
    weight: lighter;
    color: rgb(38, 38, 38);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px;
    font-size: 88%;
    margin-left: 10;
}

blockquote {
    font-family: Ubuntu Mono;
    weight: lighter;
    text-align: justify;
    color: rgb(38, 38, 38);
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 90%;
    margin-left: 5;
}

pre {
    font-family: Ubuntu Mono;
}


/* generic image resizer 
https://stackoverflow.com/questions/12991351/css-force-image-resize-and-keep-aspect-ratio#17183996
*/

/*img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0; 
}
*/

/*// 2022 Sept*/
figure img {
    display: block;
    margin: 0;
    padding: 0;
    margin: 0 0 0px 0;
}
figure:hover {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
figure {
    transition: transform 0.5s;
    -webkit-transition: -webkit-transform 02.5s;
    -moz-transition: -moz-transform 02.5s;
    -o-transition: -o-transform 0.5s;
 
    display: block;
    margin:0;        /*// wichtig !  */
/*    margin: 2px 0;  top & bottom padding  */
    padding: 0;      /* cargo c?  */
    border: 0;       /* cargo c?  */
    /*border: thin silver solid;  */
}

figcaption {
  background-color: rgba(200, 200, 200, 0.3);
  border-top: dotted grey 1px;
  border-bottom: dotted grey 1px;
  color: #222;
  font-style: italic;
  font-size: smaller;
  /*font-variant: small-caps;*/
  /*margin: 0;   Add this */
    margin: 0 0 30px 0;
  line-height: 1.5;  /* Add this */
  padding: 1px;
  text-align: center;
}
