html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #e2ddda;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: 'Open Sans Condensed', sans-serif;
}

h1 {
  margin: 1rem 0 .25rem 0;
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-family: Times;
  font-style: italic;
  font-weight: 100;
  margin: 0 0 1rem 0;
  font-size: 1rem;
  text-align: center;
}

h4, h5 {
  font-size: 1rem;
}

#loader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
#loader.loading {
  display: block;
}
#loader p {
  font-size: .8rem;
  margin: 0;
}
#loader > div {
  background: #fff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 50%;
  left: 50%;
  padding: 3% 10%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#loader > div:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #852336 0%, #dd193f 66%, #000 100%);
}

#polyrize-demo {
  position: relative;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
#polyrize-demo img {
  max-width: 100%;
  border: 10px solid #fff;
  box-shadow: 10px 0px 120px -10px rgba(0, 0, 0, 0.5);
}
#polyrize-demo .org-image {
  position: absolute;
  right: 10%;
  bottom: -10%;
  transform-origin: 95% 95%;
  transform: scale(0.3);
}
#polyrize-demo .org-image img {
  border: 30px solid #fff;
}

.uploader {
  border: 2px dashed rgba(0, 0, 0, 0.5);
  width: 60%;
  margin: 60px auto 20px auto;
  padding: 5% 10% 10% 10%;
  text-align: center;
  position: relative;
}
.uploader.hover {
  color: #000;
  border-color: #000;
}
.uploader .fileselector {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
}
.uploader .filedrop strong {
  font-size: 2rem;
  display: block;
  position: relative;
}

.info {
    width: 60%;
    margin: 0 auto 40px auto;
}