body, html {
  padding: 0;
  margin: 0;
  background-color: #352538;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.sketch__wrapper {
  display: flex;
  width: 100%;
  margin: 2rem 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#sketch {
  border: 4px solid #ed64a6;
  padding: 0.25rem;
  background-color: #00000030;
  border-radius: 6px;
}
.btn {
  transition: all .5s ease;
  outline: 0;
  border: 2px solid #ed64a6;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin: 1rem auto 0;
  cursor: pointer;
  color: #fbb6ce;
  font-size: 1.25rem;
  font-weight: 500;
  background: none;
}
.btn:hover {
  background-color: #211424;
  color: #fff5f7;
  border-color: #f687b3;
}
.btn:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}
.form {
  background-color: #00000030;
  border: 3px solid #ed64a6;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem;
}
.label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #d6bcfa;
}
.label__caption {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f687b3;
  margin-bottom: 0.25rem;
}
input[type=text], input[type=number], textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  margin: 0.5rem 0;
  /* border: 1px solid #333; */
  background-color: #00000030;
  border: 2px solid #ed64a6;
  color: #fff5f7;
  resize: none;
}
#interpreted {
  font-size: 0.75rem;
  color: #a0aec0;
  line-height: 1.75;
  max-height: 8rem;
  overflow: scroll;
}
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  text-transform: capitalize;
  font-weight: 600;
  background-color: rgb(117, 42, 81);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  padding: 2rem;
  border-top: 4px solid #d84591;
}
.navlink {
  text-decoration: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: rgb(63, 17, 40);
  font-weight: 400;
  transition: all 0.15s ease;
  text-align: center;
}
.navlink:hover {
  color: #d6bcfa
}
.navlink--active {
  color: rgb(254, 215, 226) !important;
  font-weight: 600
}
.navwrapper {
  width: 100%;
  max-width: 44rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row
}


@media only screen and (min-width: 600px) {
  .form {
    margin: 1rem auto;
    width: 24rem;
  }
}
@media only screen and (min-width: 900px) {
  .sketch__wrapper {
    flex-direction: row;
  }
  #sketch, .form {
    margin: 1rem;
  } 
}
