body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 120%;
    background-color: white;
}

.imageRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.imageContainer {
  display: flex;
  flex: 2.5;
  min-width: 500px;
  margin:15px;
  justify-content: center;
}

.infoContainer {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin:15px;
  padding:10px;
  flex-wrap: wrap;
}

.infoBlock {
    flex: 0 1 auto;
    flex-direction: row;
    flex-basis: 100px;
    min-width: 350px;
}

.infoBlockGallery {
    flex: 0 1 auto;
    flex-direction: row;
    flex-basis: 100px;
    min-width: 400px;
    margin-top: auto;
}

@media (max-width: 1000px) {
  .infoBlockGallery {
    order: -1;
    margin-top: 0;
  }
}

.currentLabel {
    display: none;
    margin-left: 5px;
    color: black;
}

a {
    text-decoration: none;
    color: #0000F1;
}

a:visited {
    color: #0000F1;
}

a:active {
    color: red;
}

.currentEdit .currentLabel {
    display: inline;
}

@media (max-width: 1500px) {
  .imageRow {
    flex-direction: column;
    align-items: center;
  }

  .imageContainer {
    display: flex;
    justify-content: center;
  }

  .infoContainer {
    flex-direction: row;
  }
}

body.dark-mode {
    background-color: black;
    color: white;
}

body.dark-mode .button {
    background-color: #303030;
    color: white;
}

body.dark-mode a {
  color: #99C2FC;
}

body.dark-mode .currentLabel {
  background-color: black;
  color: white;
}

#darkMode {
    cursor: pointer;
}