* {
  padding: 0;
  margin: 0;
  color: var(--color-primary);
}
.dark-theme {
  --color-accent: #33b5e5;
  --color-primary: #f3f3f3;
  --color-secondary: #bebebe;
  --color-background: #000;
  --color-background-gradient: #272d33;
}
.light-theme {
  --color-accent: #33b5e5;
  --color-primary: #000;
  --color-secondary: #323232;
  --color-background: #f3f3f3;
  --color-background-gradient: #fff;
}
body {
  font: 14px Roboto, Ariel, sans-serif;
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  color: var(--color-primary);
  background-color: var(--color-background);
  background: linear-gradient(var(--color-background), var(--color-background-gradient));
  display: flex;
  flex-direction: column;
}
header {
  border-bottom: 3px solid var(--color-accent);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
h1 {
  width: calc(100vw -20px);
  padding: 10px;
}
.brightness {
  background-color: var(--color-primary);
  mask: url("brightness-medium.svg") no-repeat center;
  height: 50px;
  width: 50px;
}
.content {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
aside {
  width: 200px;
  padding: 20px;
  border-right: 1px solid;
}
h2 > a {
  color: var(--color-primary);
}
main {
  max-width: 80ch;
  min-width: 50vw;
  padding: 20px;
}
h3 {
  color: var(--color-secondary);
  border-bottom: 1px solid;
  margin-y: 10px;
  padding-y: 10px;
  font-variant: small-caps;
}
#photomaincontainer {
  height: 60vh;
  width: 80ch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 30px;
}
#photomain {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
.photoboard {
  display: grid;
  grid-template-rows: repeat(auto-fit, 200px);
  grid-template-columns: repeat(auto-fit, 200px);
  overflow-y: auto;
  max-height: 40vh;
}
.card {
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
}
.card > img {
  max-height: 150px;
  max-width: 150px;
}
footer {
  border-top: 1px solid;
  bottom: 0;
  color: var(--color-secondary);
}
footer > ul > li {
  display: inline-block;
  padding-left: 5px;
}
.cdiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  max-width: 40ch;
  padding-top: 10px;
}
.maplibregl-popup-content {
  background: var(--color-background) !important;
  color: var(--color-primary);
  border-radius: 4px;
}
.maplibregl-popup-anchor-top .maplibregl-popup-tip {
  border-bottom-color: var(--color-background) !important;
}
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  border-top-color: var(--color-background) !important;
}
.maplibregl-popup-content {
  white-space: pre-line;
}
#map {
  margin-bottom: 50px;
}
.hidden {
  display: none;
}
.holotext {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: Roboto, 'Droid Sans', sans-serif;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 2px solid #a8a8a8;
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  transition: border-bottom-color 0.2s ease-out;
}
.holotext:focus {
  border-bottom: 2px solid #33b5e5;
}
.holotext::placeholder {
  color: #838383;
}
.holobutton {
  background: var(--color-background-gradient);
  border: 1px solid #4a4a4a;
  border-radius: 2px;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.1s, border-color 0.1s;
  width: 100%;
}
.holobutton:hover {
  background: var(--color-background);
  border-color: #5c5c5c;
}
.holobutton:active {
  background: #09c;
  border-color: #00b4f0;
  color: #fff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
  outline: none;
}
.reviewlist {
  display: grid;
}
.review {
  padding: 20px;
  background-color: rgba(255,255,255,0.063);
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 20ch;
}
.review > p {
  padding-bottom: 5px;
}
.review > .text {
  display: none;
}
