.imgageupwards{
  position: relative;
  top:-80px;
  }

.rotate {
  transform: rotate(-90deg); /* This makes a text (in a paragraph) rotated by 90 °. Was added by Christoph on 25.10.2023. */
	word-break: keep-all !important; /* This ...  */
	overflow-wrap: normal !important; /* ..  and this manages content overflow of the rotated text, which occurred in a nested columns environ. Added by Christoph on 29.11.2023. */
  /* Legacy vendor prefixes that you probably don't need... */
  /* Safari */
  -webkit-transform: rotate(-90deg);
  /* Firefox */
  -moz-transform: rotate(-90deg);
  /* IE */
  -ms-transform: rotate(-90deg);
  /* Opera */
  -o-transform: rotate(-90deg);
}

.unclickable > a:hover {
  cursor: default;  text-decoration: none !important; 
} /* This creates a class called "unclickable" which is used for dead links, like e.g. the "Events" drop-down menu. If such unclickable links are hovered over by the mouse pointer, then the link does not become underlined and the mouse pointer does not become a hand icon. This was added by Christoph on 25.7.2022. */

.site-logo-colour-black {
  background-color: #000;
} /* This makes the black banner at the top of the subpages. Essentially, it changes the background colour of the site logo block of the page template to black. This was added by Christoph on 27.7.2022. */

a {
     color: #F86200;
	   text-decoration: none !important;
} /* This makes the link colour orange instead of the default blue. This was added by Christoph on 01.09.2022. */

a:hover {
     color: #DD2200;
	   text-decoration: underline !important;
} /* This is the link appearance when the mouse pointer is over the link. This was added by Christoph on 01.09.2022. */

.wp-block-image a {
	font-size: 13px;
} /* This is to make the font size of links in figure captions equal to the font size of common text in figure captions. This was added by Christoph on 01.09.2022. */
