html {
  font-size: 16px;
  font-family: 'Arial', sans-serif;
}
body,html{
  font-weight: 100;
  background-color: black;
  color: white;
}

a {
  color: white;
}

p {
  margin: 0.5rem 0;
}

.d-none {
  display: none;
}

.img-wrapper {
  width: 100%;
  text-align: center;
}
.img {
  width: 90%;
  height: auto;
  margin: 1rem;
  /* https://html-css-js.com/css/generator/box-shadow/ */
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5); 
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}
.img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.settings-wrapper {
  display: flex;
  justify-content: center;
}
.settings-wrapper>span {
  display: inline-flex;
  align-items: center;
}

/* icon heights */
.shutter-speed {
  height: 1.3rem;
}
.aperature {
  height: 1rem;
}
.f-stop {
  height: 1.3rem;
}
.iso {
  height: 0.9rem;
}

/* upload */
#uploadImages {
  display: none;
}
.upload {
  width: 90%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 1em;
  padding: 1em;
  cursor: pointer;

  svg {
    width: 5em;
    transition: all 0.4s ease;
    path {
      transition: all 0.4s ease;
    }
  }

  .upload-title {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.3em;
    margin: 0.5rem 0;
  }

  .upload-subtitle {
    margin: 0;
  }

  .blue {
    color: #3588b9;
    text-decoration: none;
    cursor: pointer;
  }
}
