@import url('https://fonts.googleapis.com/css?family=Quantico');

@font-face {
  font-family: 'PrizmaTitling';
  src: url('../font/PrizmaTitling.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: #000000;
  color: white;
  font-style: normal;
  font-family: 'proxima-nova', sans-serif;
  font-size: 13px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 1px;
  overflow-y: scroll;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"><circle cx="7" cy="7" r="6" fill="white"/></svg>') 7 7, none;
}

/* Custom scrollbar - white with 50px margins (top, bottom, right) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 50px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 0;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Firefox - limited support for margins, using thin scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: white transparent;
}

* {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"><circle cx="7" cy="7" r="6" fill="white"/></svg>') 7 7, none;
}

a {
  color: white;
  text-decoration: none;
}

@keyframes show-info {
  0% {
    transform: rotateY(120deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

.info {
  transition: all 180ms ease-out;
  transform-style: preserve-3d;
  transform: perspective(800px);
  font-family: 'Quantico', sans-serif;
  position: absolute;
  font-size: 12px;
  opacity: 0.8;
  color: white;
  width: 240px;
  left: 0;
  top: 20px;
}

.info:hover {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.info h1,
.info h2,
.info h3 {
  line-height: 1;
  margin: 5px 0;
}

.info a {
  transition: all 200ms ease-out;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  text-decoration: none;
  opacity: 0.6;
}

.info a:hover {
  opacity: 0.99;
}

.info .about,
.info .more {
  transform-origin: 0% 50%;
  transform: rotateY(120deg);
  margin-bottom: 1px;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px 15px 12px 20px;
}

.info .about {
  animation: show-info 500ms cubic-bezier(0.23, 1, 0.32, 1) 600ms 1 normal forwards;
  padding-bottom: 15px;
}

.info .about a {
  opacity: 0.9;
}

.info .about h1 {
  letter-spacing: -1px;
  font-weight: 300;
  font-size: 19px;
  opacity: 0.95;
}

.info .about h2 {
  font-weight: 300;
  font-size: 13px;
  opacity: 0.8;
}

.info .about h3 {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 11px;
}

.info .about h3:before {
  margin-right: 2px;
  font-size: 14px;
  content: '\203A';
}

.info .more {
  animation: show-info 500ms cubic-bezier(0.23, 1, 0.32, 1) 500ms 1 normal forwards;
  padding: 5px 15px 10px 20px;
}

.info .more a {
  text-transform: uppercase;
  margin-right: 10px;
  font-size: 10px;
}

.kanvas {
  z-index: 1000;
  transition: all 180ms ease-out, filter 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  filter: saturate(1) brightness(1);
  transform: scale(1) translateZ(0); /* Force hardware acceleration */
  will-change: transform, filter, opacity;
  opacity: 1;
}

.kanvas.desaturated {
  filter: saturate(0) brightness(0.22);
  transform: scale(1.1) translateZ(0);
}

.opening-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1500;
  pointer-events: none;
  opacity: 1;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
  mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
  will-change: mask-image, opacity;
  transform: translateZ(0); /* Force hardware acceleration */
}

.canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1400;
  pointer-events: none;
  opacity: 0.9;
  will-change: opacity;
  transform: translateZ(0); /* Force hardware acceleration */
}

.permanent-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1501;
  pointer-events: none;
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(circle at center, transparent 60%, black 100%);
  mask-image: radial-gradient(circle at center, transparent 60%, black 100%);
  transform: translateZ(0); /* Force hardware acceleration */
}

.page {
  z-index: 2000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.log {
  display: none;
}

.nav {
  list-style: none;
  margin: 42px 0 0 50px;
  position: fixed;
  z-index: 999;
  padding: 0;
  display: none; /* Hide old menu */
}

.MenuItem {
  cursor: pointer !important;
  transition: all 900ms cubic-bezier(0, 0.91, 0, 0.99);
  background-image: url('../img/nav3.png');
}

.newNav {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.newMenuItem {
  width: 230px;
  font-family: 'PrizmaTitling', sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: white;
  text-decoration: none;
  letter-spacing: 0;
  text-align: left;
  padding: 20px;
  cursor: pointer !important;
  transition: opacity 0.3s ease;
  display: block;
  box-sizing: border-box;
  position: relative;
}


.newMenuItem:hover {
  opacity: 0.7;
}

.newMenuItem.selectedMenuItem {
  opacity: 0.5;
}

.newMenuItemRow {
  width: 207px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding-right: 0;
  box-sizing: border-box;
}

.newMenuItemSmall {
  font-family: 'PrizmaTitling', sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: white;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer !important;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.newMenuItemSmall:hover {
  opacity: 0.7;
}

.newMenuItemSmall.selectedMenuItem {
  opacity: 0.5;
}

a,
button,
input,
textarea,
select,
.artistGallery,
.artistVideo,
#exhibitionPart5,
#exhibitionPart6,
#followButton,
#followSendButton,
canvas {
  cursor: pointer !important;
}

#MenuItemExhibitions,
#MenuItemScreenings,
#MenuItemResidency,
#MenuItemProduction,
#MenuItemBlog,
#MenuItemFOP,
#MenuItemAbout,
#MenuItemPress,
#MenuItemContact {
  background-repeat: no-repeat;
  height: 30px;
  margin-bottom: 0;
  width: 180px;
}

#MenuItemExhibitions {
  background-position: -12px -3px;
}

#MenuItemScreenings {
  background-position: -12px -33px;
}

#MenuItemResidency {
  background-position: -12px -63px;
}

#MenuItemProduction {
  background-position: -12px -93px;
  margin-bottom: 4px;
}

#MenuItemBlog {
  background-position: -12px -126px;
  width: 35px;
  height: 25px;
  float: left;
}

#MenuItemFOP {
  background-position: -12px -146px;
  width: 135px;
  height: 25px;
  float: right;
}

#MenuItemAbout {
  background-position: -12px -167px;
  width: 43px;
  height: 25px;
  margin-right: 18px;
  float: left;
  clear: both;
}

#MenuItemPress {
  background-position: -12px -187px;
  width: 41px;
  height: 25px;
  margin-right: 18px;
  float: left;
}

#MenuItemContact {
  background-position: -12px -207px;
  width: 61px;
  height: 25px;
  float: left;
}

.MenuItem:hover,
li.selectedMenuItem {
  background-position: -211px -3px;
}

#MenuItemExhibitions:hover {
  background-position: -211px -3px;
}

#MenuItemScreenings:hover {
  background-position: -211px -33px;
}

#MenuItemResidency:hover {
  background-position: -211px -63px;
}

#MenuItemBlog:hover {
  background-position: -68px -126px;
}

#MenuItemFOP:hover {
  background-position: -168px -146px;
}

#MenuItemAbout:hover {
  background-position: -75px -167px;
}

#MenuItemPress:hover {
  background-position: -70px -187px;
}

#MenuItemContact:hover {
  background-position: -92px -207px;
}

#followContainer {
  position: fixed;
  top: 0;
  right: 0;
}

#followButton {
  width: 55px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: -12px -229px;
  position: fixed;
  right: 50px;
  top: 50px;
  display: none;
}

#followContent {
  font-family: 'proxima-nova', sans-serif;
  font-size: 18px;
  text-align: right;
  background-color: #272727;
  margin-top: -40px;
  overflow: hidden;
  height: 0;
  position: fixed;
  right: 0;
  top: 0;
  border: 1px solid #464646;
}

#followContent a:hover {
  border-bottom: 1px dotted white;
}

#followContentInner {
  margin: 50px;
}

#followInput,
#followSendButton {
  height: 30px;
  background-color: #272727;
  color: white;
  outline: none;
  padding: 0;
  margin: 0;
}

#followInput {
  width: 80px;
  border: 1px solid #464646;
  border-right: none;
  padding-left: 10px;
}

#followSendButton {
  cursor: pointer;
  padding: 0 10px;
  height: 32px;
  border: 1px solid #464646;
}

#followSendButton:hover {
  background-color: #464646;
}

#prizmaLogo {
  font-family: 'PrizmaTitling', sans-serif;
  font-weight: normal;
  font-size: 28px;
  color: white;
  letter-spacing: 6px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  gap: 15px;
}

.prizmaSymbol {
  height: 28px;
  width: auto;
  display: block;
}

.prizmaText {
  font-size: 18px;
  letter-spacing: 6px;
  margin-left: 0px;
}

.prizmaText {
  display: inline-block;
}

.sheet {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100svh;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

#sheetContent {
  text-align: left;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.artistSheet {
  width: 380px;
}

.exhibitionThumbnail {
  float: left;
  width: 300px;
  height: 300px;
  padding-right: 20px;
}

.exhibitionsItem {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  cursor: pointer !important;
}

body.residency-page .exhibitionsItem {
  cursor: default !important;
}

.exhibitionsItem img {
  width: 100%;
  height: 100%;
}

#exhibitionColumn1,
#exhibitionColumn2,
#exhibitionColumn3 {
  position: relative;
  margin-top: 50px;
}

#exhibitionColumn1 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  #exhibitionPart2 {
    /* width: 50%; */
    margin-right: 50px;
  }
  #exhibitionColumn2{
    width: 50%;
  }
}

#exhibitionColumn3 {
  left: 0;
  margin-bottom: 50px;
}

#exhibitionPart1,
#exhibitionPart2,
#exhibitionPart4,
#exhibitionPart6 {
  position: relative;
  top: 0;
  padding-top: 0;
}

#exhibitionPart3,
#exhibitionPart5 {
  position: relative;
  top: 0;
  padding-top: 30px;
}

#exhibitionPart1 {
  width: 100%;
  img {
    height: 100%;
    width: 100%;
  }
}

#exhibitionPart5 {
  float: left;
  margin-right: 28px;
  cursor: pointer;
}

#exhibitionPart6 {
  cursor: pointer;
}

.exhibitionPartContainer1 {
  width: 100%;
  display: inline-block;
  display: flex;
}

.pageInfo {
  position: fixed;
  top: 265px;
  left: 50px;
  font-family: 'proxima-nova', sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.8px;
  width: 180px;
}

.exhibitionItem1,
.exhibitionItem2,
.exhibitionItem3,
.exhibitionItem4,
.exhibitionItem5,
.exhibitionItem6,
.exhibitionItem7 {
  position: absolute;
}

#exhibitionItem1Container {
  width: 850px;
  height: 750px;
  position: absolute;
}

.exhibitionItem1 {
  top: 0;
  right: 0;
}

.exhibitionName {
  position: relative;
  font-family: 'PrizmaTitling', sans-serif;
  font-size: 26px;
  font-weight: normal;
  bottom: 0;
}

.exhibitionType,
.exhibitionDate {
  position: relative;
  font-size: 13px;
  top: 10px;
}

.exhibitionType {
  font-weight: bold;
  float: left;
}

.exhibitionDate {
  font-weight: 100;
  font-style: italic;
  left: 10px;
}

.exhibitionArtistLabel {
  font-size: 18px;
  font-weight: bold;
  bottom: 15px;
}

.exhibitionArtist a,
.exhibitionInfo a,
.artistText a,
.residencyLink a,
.fopLink a,
.aboutItem a {
  border-bottom: 1px dotted white;
}

.exhibitionArtist a:hover,
.exhibitionInfo a:hover,
.artistText a:hover,
.residencyLink a:hover,
.fopLink a:hover,
.aboutItem a:hover {
  border-bottom: 1px solid white;
}

.exhibitionInfo {
  padding-top: 5px;
  line-height: 26px;
  width: 380px;
}

#artistColumn1 {
  float: left;
  text-align: right;
  width: 200px;
  margin-right: 30px;
}

#artistColumn2 {
  margin-bottom: 30px;
}

#artistColumn3 {
  text-align: justify;
  text-justify: inter-word;
}

.artistName {
  font-size: 26px;
  font-weight: 100;
  margin-bottom: 20px;
}

.artistLabel {
  font-size: 18px;
  font-weight: bold;
}

.artistText {
  margin-bottom: 20px;
}

.artistGallery,
.artistVideo {
  margin-bottom: 30px;
  cursor: pointer;
}

.video2 {
  margin-top: 40px;
}

.residencyAvatar {
  margin-bottom: 30px;
}

.residencyName {
  font-size: 26px;
  font-weight: 100;
  margin-top: 30px;
  margin-bottom: 10px;
}

.residencyCurrent {
  font-weight: bold;
}

.fopItem {
  width: 250px;
  text-align: center;
  margin: auto;
  height: 200px;
  float: left;
}

.fopAvatar {
  margin-bottom: 10px;
  text-align: center;
}

.fopName {
  font-size: 18px;
  font-weight: 100;
  text-align: center;
}

.productionItem {
  margin-bottom: 30px;
}

.aboutItem {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  background-color: #272727;
  border: 1px solid #464646;
  padding: 30px;
  margin-bottom: 30px;
}

body.contact-page .aboutItem,
body.about-page .aboutItem,
body.press-page .aboutItem {
  background-color: #000000;
  border: none;
}

body.about-page .sheet,
body.contact-page .sheet {
  justify-content: center;
}

.aboutItemLeft {
  padding: 0;
  width: 160px;
  font-family: 'PrizmaTitling', sans-serif;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 20px;
}

.aboutItemRight {
  padding: 0;
  width: 100%;
  display: inline-block;
  a{
    width: 100%;
  }
  img{
    width: 100%;
    height: auto;
  }
}

#dragWarn {
  position: fixed;
  padding: 50px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999999;
  font-family: 'PrizmaTitling', sans-serif;
  font-weight: normal;
}

.gm-style-iw {
  color: black;
}

#gmap_canvas img {
  max-width: none !important;
  background: none !important;
}

#map-canvas {
  height: 300px;
  margin: 0;
  padding: 0;
}

.img850 {
  /* Add styles here if needed */
}

.hides {
  opacity: 0;
}

#MenuItemExhibitions,
#MenuItemScreenings,
#MenuItemResidency,
#MenuItemProduction,
#MenuItemBlog,
#MenuItemFOP,
#MenuItemAbout,
#MenuItemPress,
#MenuItemContact,
.newMenuItem,
.newMenuItemSmall,
#followContainer,
#prizmaLogo,
#dragWarn,
canvas {
  opacity: 0;
}

.dg.ac {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1000px !important;
  z-index: 10000 !important;
}

.pressDate {
  font-weight: 100;
}

.h1 {
  position: absolute;
  top: 300px;
  left: 300px;
  width: 300px;
}

.nounderline {
  border-bottom: none !important;
}

.pageInfo {
  display: none;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  /* Hide scrollbar on mobile */
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Hide drag and drop text on mobile */
  #dragWarn {
    display: none !important;
  }

  /* Disable custom cursor on mobile */
  html,
  body,
  * {
    cursor: auto !important;
  }

  html,
  body {
    font-size: 16px;
    line-height: 24px;
  }

  .nav {
    margin: 30px 0 0 30px;
  }

  .nav {
    transform: scale(1.8);
    transform-origin: top left;
  }

  .MenuItem {
    background-size: contain;
  }

  #MenuItemExhibitions,
  #MenuItemScreenings,
  #MenuItemResidency,
  #MenuItemProduction,
  #MenuItemBlog,
  #MenuItemFOP,
  #MenuItemAbout,
  #MenuItemPress,
  #MenuItemContact {
    width: 180px;
    height: 30px;
  }

  .info {
    width: 90%;
    max-width: 400px;
    left: 20px;
    top: 20px;
    font-size: 14px;
  }

  .info .about h1 {
    font-size: 22px;
  }

  .info .about h2 {
    font-size: 16px;
  }

  .info .about,
  .info .more {
    padding: 10px 12px 10px 15px;
  }

  #followButton {
    right: 30px;
    top: 30px;
    width: 70px;
    height: 35px;
    transform: scale(1.3);
  }

  #followContentInner {
    margin: 40px 30px;
    font-size: 18px;
  }

  #followInput {
    width: 200px;
    font-size: 16px;
    height: 40px;
  }

  #followSendButton {
    font-size: 16px;
    padding: 0 12px;
    height: 42px;
  }

  /* Position menu at bottom right on mobile */
  .newNav {
    top: auto;
    bottom: 30px;
    left: auto;
    right: 30px;
    align-items: flex-end;
  }

  .newMenuItem {
    text-align: right;
    width: 210px;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 0 0 8px black, 0 0 16px black, 0 0 24px black;
  }

  .newMenuItemRow {
    width: 179px;
    justify-content: flex-end;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }

  .newMenuItemSmall {
    text-shadow: 0 0 6px black, 0 0 12px black, 0 0 18px black;
  }

  #prizmaLogo {
    top: 30px;
    bottom: auto;
    left: 30px;
    font-size: 24px;
  }
  
  .prizmaSymbol {
    height: 24px;
  }
  
  .prizmaText {
    font-size: 16px;
    margin-left: 0px;
    text-shadow: 0 0 8px black, 0 0 16px black, 0 0 24px black;
  }

  .sheet {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  #sheetContent {
    max-width: 100%;
  }

  .exhibitionInfo {
    width: 100%;
    padding-top: 15px;
    line-height: 28px;
    font-size: 16px;
  }

  .artistSheet {
    width: 100%;
  }

  #artistColumn1 {
    float: none;
    text-align: left;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  #exhibitionColumn1 {
    flex-direction: column;
    gap: 40px;
  }

  #exhibitionColumn1 #exhibitionPart2 {
    margin-right: 0;
  }

  #exhibitionColumn1 #exhibitionColumn2 {
    width: 100%;
  }

  .exhibitionThumbnail {
    float: none;
    width: 100%;
    height: auto;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .pageInfo {
    top: 100px;
    left: 30px;
    width: auto;
    font-size: 13px;
  }

  .exhibitionName {
    font-size: 28px;
  }

  .artistName {
    font-size: 28px;
  }

  .residencyName {
    font-size: 28px;
  }

  .aboutItem {
    padding: 30px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .aboutItemLeft {
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .fopItem {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }

  #exhibitionItem1Container {
    width: 100%;
    height: auto;
    position: relative;
  }

  .exhibitionItem1 {
    position: relative;
    top: auto;
    right: auto;
  }

  #dragWarn {
    padding: 25px;
    font-size: 14px;
    right: 30px;
  }

  #map-canvas {
    height: 300px;
  }

  .artistLabel {
    font-size: 20px;
  }

  .artistText {
    font-size: 16px;
    line-height: 24px;
  }

  .exhibitionType,
  .exhibitionDate {
    font-size: 15px;
  }

  .exhibitionPartContainer1 {
    flex-direction: column;
  }

  #exhibitionPart5 {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  html,
  body {
    font-size: 15px;
    line-height: 22px;
  }

  .nav {
    margin: 25px 0 0 25px;
  }

  .nav {
    transform: scale(1.7);
    transform-origin: top left;
  }

  .MenuItem {
    background-size: contain;
  }

  #MenuItemExhibitions,
  #MenuItemScreenings,
  #MenuItemResidency,
  #MenuItemProduction,
  #MenuItemBlog,
  #MenuItemFOP,
  #MenuItemAbout,
  #MenuItemPress,
  #MenuItemContact {
    width: 180px;
    height: 30px;
  }

  .info {
    width: calc(100% - 30px);
    max-width: none;
    font-size: 13px;
    left: 15px;
    top: 15px;
  }

  .info .about h1 {
    font-size: 20px;
  }

  .info .about h2 {
    font-size: 15px;
  }

  #followButton {
    right: 25px;
    top: 25px;
    width: 60px;
    height: 30px;
    transform: scale(1.2);
  }

  #followContentInner {
    margin: 35px 25px;
    font-size: 17px;
  }

  #followInput {
    width: 180px;
    font-size: 15px;
    height: 38px;
  }

  #followSendButton {
    font-size: 15px;
    height: 40px;
  }

  /* Position menu at bottom right on mobile */
  .newNav {
    bottom: 0px;
    right: 25px;
  }

  .newMenuItem {
    text-align: right;
    width: 210px;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 0 0 8px black, 0 0 16px black, 0 0 24px black;
  }

  .newMenuItemRow {
    width: 179px;
    justify-content: flex-end;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }

  .newMenuItemSmall {
    text-shadow: 0 0 6px black, 0 0 12px black, 0 0 18px black;
  }

  #prizmaLogo {
    top: 25px;
    bottom: auto;
    left: 25px;
    font-size: 22px;
  }
  
  .prizmaSymbol {
    height: 22px;
  }
  
  .prizmaText {
    font-size: 15px;
    margin-left: 0px;
    text-shadow: 0 0 8px black, 0 0 16px black, 0 0 24px black;
  }

  .sheet {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 100px;
    padding-bottom: 200px;
  }

  .exhibitionName,
  .artistName,
  .residencyName {
    font-size: 24px;
  }

  .exhibitionType,
  .exhibitionDate {
    font-size: 14px;
  }

  .artistLabel {
    font-size: 18px;
  }

  .aboutItem {
    padding: 25px;
    font-size: 15px;
  }

  #dragWarn {
    padding: 20px;
    font-size: 13px;
    right: 25px;
  }

  .artistText {
    font-size: 15px;
    line-height: 22px;
  }
}