@font-face { font-family: Alice; src: url('../fonts/Alice-Regular.ttf'); } 
@font-face { font-family: Manrope; src: url('../fonts/Manrope-VariableFont_wght.ttf'); } 

:root {
  color-scheme: dark;
}
html, body {
	height: 98%;
	margin: 0;
	font-family: Manrope;
	background: #FFFFFF;
	
	color: light-dark(#000000, #ffffff);
	background-color: light-dark(#ffffff, #000000);
}

.titleFont {
	font-family: Alice;
}

.homeDiv {
	width: fit-content;
	margin-right: 10px;
	margin-left: 10px;
	float:left;
}

.homeImage {
	margin-top: 10px;
	margin-bottom: 10px;
	vertical-align: middle;
}
.homeImage:hover {
	transform: scale(1.05);
}

.homePanel {
	display: grid;
	grid-area: homePanel;
	overflow: hidden;
}

/* ------------------------------------------ */
/* ------------------------------------------ */

.container {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 5px 1fr 40px;
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-template-areas:
    "header"
    "line"
    "middle"
    "footer";
 width: 100%; 
  height: 100%; 
  }

.line { grid-area: line; }

.contents { 
	grid-area: contents; 
	border-color: yellow;
	border-width: 2px;
	border-style: none;
	margin-left: 10px;
}
.right
{
	border-color: yellow;
	border-width: 2px;
	border-style: none;
	vertical-align: top;
	width:100%;
	height:100%;
}

.footer { grid-area: footer; }

.logo {
	margin-left: 10px;
	margin-top: 10px;
}

.menu {
	margin-left: 10px;
	margin-top: 10px;
	border-color: orange;
	border-width: 2px;
	border-style: none;
}

/* ------------------------------------------ */
/* ------------------------------------------ */

@media (min-width:320px)  { 
/* smartphones, iPhone, portrait 480x320 phones */ 

.middle {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "smallMenu"
    "contents";
  grid-area: middle;
}

.menu
{
	display: none;
}

.smallMenu { 
	grid-area: smallMenu; 
	display: none;
	background-color: ;light-dark(#8E8E8, #f81818)
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.header {  
	display: grid;
  grid-template-columns: 1fr 50px;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "logo hamburger";
  grid-area: header;
}

.hamburger { 
	grid-area: hamburger; 
	display: block;
}

}

/* ------------------------------------------ */
/* ------------------------------------------ */

@media (min-width:641px)  { 
/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 

.middle {  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 1fr;
  gap: 0px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "menu contents";
  grid-area: middle;
}

.smallMenu { 
	grid-area: smallMenu; 
	display: none; 
}

.menu { 
	grid-area: menu; 
	display: block;
	background-color: light-dark(#ffffff, #000000);
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

.header { 
	display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "logo";
  grid-area: header;
}

.hamburger { 
	display: none;
}

}

/* ------------------------------------------ */
/* ------------------------------------------ */

h3 {
	margin-top: 5px;
	margin-bottom: 5px;
}
dt {
	margin-left: 20px;
	margin-bottom: 5px;
	cursor: pointer;
}
dt:hover {
	font-style: oblique;
}
.link {
	cursor: pointer;
}
.link:hover {
	font-style: oblique;
}

.image {
	display: inline-block;
	border: 1px solid red;
}

.overview {
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	vertical-align: middle;
}
.overview:hover {
	transform: scale(1.05);
}

.errorText {
	color: #ff0000;
}

.successText {
	color: #1ea106;
}

.contact {
	width:200px;
}
.captcha-image {
	vertical-align:middle;
}
.refresh-captcha {
	vertical-align:middle;
}
.captcha_challenge {
	width:200px;
}

/* ------------------------------------------ */
/* ------------------------------------------ */

/* style for the awards page */

@media (min-width:320px)  { 
/* smartphones, iPhone, portrait 480x320 phones */ 

.award {
	margin-top: 10px;
	margin-bottom: 10px;
}
}

@media (min-width:641px)  { 
/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 

.awards {  
	display: grid;
	grid-template-columns: 250px auto;
	row-gap: 10px;
	column-gap: 30px;
	grid-template-areas: 
	"title1 title1"
	"award1 photo1"
	"award2 photo2"
	"title2 title2"
	"award3 photo3";
	
}

.award {
	margin-top: 0px;
	margin-bottom: 0px;
}

.title1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
.title2 {
  grid-column-start: 1;
  grid-column-end: 2;
}

.award1 {
	display: inline;
	align-items: center;
}

.award2 {
}

.award3 {
}

.awardtext {
	display: inline;
	vertical-align: middle;
	align-items: center;
	align: center;
}
}

/* ------------------------------------------ */
/* ------------------------------------------ */

/* style for the ehhibitions page */

@media (min-width:320px)  { 
/* smartphones, iPhone, portrait 480x320 phones */ 

.ex {
	margin-top: 10px;
	margin-bottom: 10px;
}
.ab {
	margin-top: 10px;
	margin-bottom: 10px;
	display: grid;
	grid-template-columns: auto;
	row-gap: 10px;
	column-gap: 30px;
	grid-template-areas: 
	"ab_awardtext"
	"ab_photo1"
	"ab_education";
}
}

@media (min-width:641px)  { 
/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 

.ex {  
	display: grid;
	grid-template-columns: auto auto;
	row-gap: 10px;
	column-gap: 30px;
	grid-template-areas: 
	"title1 title1"
	"award1 photo1"
	"title2 title2"
	"award2 photo2"
	"title3 title3"
	"award3 photo3"
	"title4 title4"
	"award4 photo4";
	
}
.ab {  
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 10px;
	display: grid;
	grid-template-columns: auto auto;
	row-gap: 10px;
	column-gap: 30px;
	grid-template-areas: 
	"ab_left ab_photo1";
}

.ex {
	margin-top: 0px;
	margin-bottom: 0px;
}

.ex_title1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
.ex_title2 {
  grid-column-start: 1;
  grid-column-end: 2;
}

.ex_award1 {
	display: inline;
	align-items: center;
}

.ex_award2 {
}

.ex_award3 {
}

.ex_text {
	display: inline;
	vertical-align: middle;
	align-items: center;
	align: center;
}
}

/* ------------------------------------------ */
/* ------------------------------------------ f2dccf */

.navbar .menu-items {
  display: flex;
}

.navbar .hamburger li {
  list-style: none;
}

.navbar .hamburger a {
  text-decoration: none;
  color: light-dark(#0e2431, #ffffff);
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .hamburger a:hover{
    font-weight: bolder;
}

.hamburger .checkbox {
  /* position: absolute;
  display: block;*/
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  float: right;
}

.hamburger .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  /*position: absolute;*/
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  float: right;
  margin-right: 10px;
  cursor: pointer;
}

.hamburger .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: light-dark(#0e2431, #dfdfdf);
}

.hamburger .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.hamburger .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.hamburger input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.hamburger input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.hamburger input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.hamburger input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.hamburger input[type="checkbox"]:checked ~ .smallMenu{
  display: block;
}

.counterimg {
	display: none;
	height: 0px;
	width: 0px;
}
.counterDiv {
	display: none;
	height: 0px;
	width: 0px;
}
