/* -----ROOT----- */

:root {
  /* --font_primary
  --font_secondary */

  --black: #111111;
  --accent: rgba(0, 0, 255, 1);

  --gap: 1rem;
}


/* -----RESET----- */

* {
  padding: 0;
  margin: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}


html, body {
  max-width: 100%;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body{

  padding: 1rem;
  font-family: 'Times New Roman', Times, serif;
  font-variant-numeric: tabular-nums;
  font-size: .9rem;
  line-height: 1.4;
  color: var(--black);
}

h1, h2, h3, h4 ,h5 ,h6 {
  text-wrap: balance;
  line-height: 1;
}

p, li, caption {
  text-wrap: pretty;
  max-width: 65ch;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
  font-style: italic;
} 

.player  {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
} 

input, textarea, button, select {
  font: inherit;
}

ul li {
  list-style: none;
}

.gap {
  height: 1rem;
  width: 1rem;
}

.sticky {
  position: sticky;
  top: var(--gap);
}


/* -----TYPO----- */

h1, h2, h3 {
  font-size: .9rem;
  font-weight: 400;
}

h3 {
  font-style: italic;
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  filter: drop-shadow(rgb(0, 0, 255, .3) 0 0 2px);
}

.italic, .you-are-here {
  font-style: italic;
}

.tabnums {
  font-variant-numeric: tabular-nums;
  font-kerning: none;
}

.link {
  text-decoration: underline;
}

.indent {
  text-indent: 32px;
}

/* -----Header----- */

.header {
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* -----MAIN----- */

.main {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.info {
  width: 254px;
  justify-self: stretch;
  position: relative;
}

/* .info a:hover, .info a:focus {
  filter: blur(2px);
} */

.content {
  flex-grow: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.current__exhib__img {
  width: 100%;
  /* background-color: lightslategrey; */
  border: 1px solid rgb(0, 0, 255, 0) ;
}

.current__exhib__img:hover {
  border: 1px solid var(--accent);
}


/* -----Project----- */

.project {
  display: flex;
  flex-direction: column;
  gap: var(--gap)
}

.raumplan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}

.raumplan__img {
  width: 200px;
  height: 300px;
  background-color: lightslategrey;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.gallery__item {
  width: 100%;
}

.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

/* -----Current----- */
.invitation {
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.project__info {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}


/* -----Past----- */

/* -----About----- */

.fabi__logo {
  height: .8rem;
  display: inline-block;
}

/* -----Newsletter----- */

input {
  margin-right: 4px;
  padding-inline: 4px;
  outline: none;
}

input:focus {
  margin-right: 4px;
  padding-inline: 4px;
  border: 1px solid var(--accent);
  filter: drop-shadow(rgb(0, 0, 255, .3) 0 0 2px);


}

button {
  padding-inline: 4px;
}

/* -----FOOTER----- */