:root {
  --red: rgb(255, 66, 69);
  --orange: rgb(255, 146, 48);
  --yellow: rgb(255, 214, 0);
  --green: rgb(48, 209, 88);
  --mint: rgb(0, 218, 195);
  --teal: rgb(0, 210, 224);
  --cyan: rgb(60, 211, 254);
  --blue: rgb(0, 145, 255);
  --indigo: rgb(107, 93, 255);
  --purple: rgb(219, 52, 242);
  --pink: rgb(255, 55, 95);
  --brown: rgb(183, 138, 102);

  --white: rgb(242, 242, 247);
  --gray: rgb(142, 142, 147);
  --black: rgb(28, 28, 30);
}

body {
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 38px;

  color: var(--white);
  background: var(--black);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

h1 {
  font-size: 2.5em;
  font-weight: 300;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h2 {
  align-self: flex-start;
  font-size: 2em;
  font-weight: 300;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

h3 {
  align-self: flex-start;
  font-size: 1.5em;
  font-weight: 300;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

p {
  font-size: 1em;
}

a {
  color: inherit;
  text-decoration: underline dotted 2px;
  text-decoration-color: inherit;
}

.text-gray {
  color: var(--gray);
}

.container {
  width: 90%;
  max-width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#image-dropzone {
  width: 80%;
  height: 10em;
  border: 1px dashed var(--mint);
  border-radius: 16px;
  padding: 1em 1em;
  cursor: pointer;

  text-align: center;
}

#image-dropzone.hover {
  border: 4px solid var(--mint);
}

#image-preview {
  width: 80%;
  height: auto;
}

#fujifilm-data-container {
  display: none;
}

.exif-table {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.exif-row {
  width: inherit;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.25em;
  border-bottom: 1px dotted var(--gray);
  padding: 0.25em 0;
}

.exif-key {
  font-weight: 200;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
}

.exif-value {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: right;
}

hr {
  width: 90%;
  height: 1px;
  border: none;
  background: var(--gray);
  margin-top: 2em;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 1em;
}
