body {
  font-family: 'Roboto', Verdana, Helvetica, Arial, sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0 0;
  -webkit-font-smoothing: antialiased;
  font-size: 1.125em;
  color: #333;
  line-height: 1.5em;
  overflow: hidden;
}

.app {
  display: relative;
  width: 100vw;
  height: 100vh;
  margin: 0 0;
}

h1, h2, h3 {
  color: #000;
}

h1 {
  font-size: 2.5em
}

h2 {
  font-size: 2em
}

h3 {
  font-size: 1.5em
}

a {
  text-decoration: none;
  color: #09f;
}

a:hover {
  text-decoration: underline;
}

.taskbar {
  width: 100%;
  font-size: 1rem;
  border-bottom: 2px solid black;
  height: 2rem;
  display: flex;
  background-color: #eed7b9;
  justify-content: space-between;
}

.taskbar_left {
  font-weight: bold;
}

.taskbar-items {
  margin: 0;
  height: 1.3rem;
  padding: 0.3rem 3rem 0 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.image-menu {
  display: block;
  position: relative;
}

.image-body {
  padding: 0.6rem;
  background-color: #f6f5f4;
}

.image-page {
  position: absolute;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(50%, 50%); */
  border: 4px solid black;
  border-radius: 5px;
}

.drop-shadow {
  box-shadow: 12px 12px 0px 0px #333;
}

.background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #ddd;
  z-index: -1000;
  background-size: 40px 40px;
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
}

.menu-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid black;
  height: 1.5rem;
  padding: 0.1rem;
  background-color: lightgray;
  cursor: move;
  resize: both;
}

.crossbutton {
  height: 1rem;
  width: 20px;
  position: relative;
  border: 1px solid black;
  margin: calc(0.1rem - 3px) 0.2rem;
  box-shadow: 2px 1.5px #111;
  text-color: black;
  cursor: pointer;
}

.crossbutton:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "\274c";
  font-size: 0.5rem;
  line-height: 1rem;
  text-align: center;
  color: black;
}

.expandbutton {
  height: 1rem;
  width: 20px;
  position: relative;
  border: 1px solid black;
  margin: calc(0.1rem - 3px) 0.2rem;
  box-shadow: 2px 1.5px #111;
  text-color: black;
  cursor: pointer;
}

.expandbutton:after {
  content: '\26F6';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.6rem;
  line-height: 0.9rem;
  text-align: center;
  color: black;
}

.horiz-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1rem;
  margin: 0 0.3rem;
  user-select: none;
}

.hl {
  margin: 0.1rem 0;
  width: 100%;
  line-height: 0.3rem;
  color: black;
}

.menu-title {
  user-select: none;
  height: 1rem;
  line-height: 0.65rem;
  margin: 0 0.3rem;
  white-space: nowrap;
}

.image-nav {
  display: flex;
  flex-direction: row;
}

.clickable-image {
  user-select: none;
  height: 2rem;
  margin: 0 0.5rem;
}

.icon {
  user-select: none;
  padding: 0.2rem;
  height: 2.0rem;
  width: 2.0rem;
  line-height: 1.5rem;
  margin: 0 0.3rem;
  border: 1px solid black;
  box-shadow: 2px 1.5px #111;
  cursor: pointer;
}

.controls {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 3rem;
  background-color: white;
  padding-top: 0.2rem;
}

/* TODO use tailwind! */

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 0.2rem;
}

.max-img-title {
  margin: 1rem 2rem;
  background-color: white;
}

.photo-images {
  border-radius: 5px;
}

.entry-page {
  display: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
}
