:root {
  --main-color: #000601;
  --accent-color: #ff6600;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--main-color);
  color: var(--accent-color);
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
  max-width: 80%;
  margin: 0 auto;
  /* line-height: 1.5; */
  -webkit-text-size-adjust: 100%;
}

main {
  padding: 1em;
}

header {
  padding: 1em 1em 0;
}

footer {}

@font-face {
  font-family: "Londrina Shadow";
  src: url("/fonts/Londrina_Shadow/LondrinaShadow-Regular.ttf")
    format("truetype");
  font-style: normal;
  /* https://developer.chrome.com/blog/font-display */
  font-display: fallback;
}

h1 {
  font-family: "Londrina Shadow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 256px;
}

#index-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#dropzone {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

#dropzone-label {
  padding: 10rem;
  border-style: dashed;
  border-color: gray;
  border-radius: 25px;
  cursor: pointer;
}

#dropzone-file {
  display: none;
}

#dropzone-icon {
  justify-self: center;
  align-self: center;
}

table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: solid;
}
