* {
  font-family: 'Roboto', sans-serif;
}

/* #editor_container {
  width: 100%;
  height: calc(100% - 16px);
} */
#editor_container {
  width: 90%;
  height: calc(100% - 45px);
  position: fixed;
  z-index: 99;
  top: 5%;
  left: 5%;
  border: 2px solid #000;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  right: 0%;
}

/* html {
  height: 100%;
  max-height: 740px;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #4568dc, #b06ab3);
  color: #D7D7EF;
  font-family: 'Lato', sans-serif;
  height: 100%;
  max-height: 740px;
  margin: 0;
  padding: 8px;
  overflow: hidden;
} */
#editImage {
  background: linear-gradient(to right, #4568dc, #b06ab3);
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 10px;
}

#editSavedImage {
  background: linear-gradient(to right, #4568dc, #b06ab3);
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 10px;
}


#editButton {
  display: flex;
  justify-content: flex-end;
}

h2 {
  margin: 50px 0;
}

section {
  flex-grow: 1;
}

.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 450px;
  height: 100%;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  transition: 0.2s;
}

.file-drop-area.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}

.fake-btn {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}


.file-msg {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.file-input:focus {
  outline: none;
}

.tangled-logo {
  width: 50px;
  height: 50px;
  display: inline;
  background: white;
  border-radius: 25px;
  padding: 10px;
}

.tangled-logo-container {
  margin-right: 15px;
}

.app-header {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
  place-items: center;
}

.app-header h2 {
  margin: 0;
}