@import url(https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Material+Icons+Outlined|Material+Icons);

/* You can add global styles to this file, and also import other style files */
html {
  font-family: "Inter", sans-serief;
  color: #222;
  overflow: hidden;
}
html, body {
  height: 100%;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 40px;
  margin-bottom: 25px;
}
h1.is-bold,
h2.is-bold {
  font-weight: bold;
  letter-spacing: -2px;
}
a {
  text-decoration: none;
}
.container {
  max-width: 850px;
  margin: auto;
}
.btn {
  padding: 12px 22px;
  background: rgba(0, 0, 0, 0.7);
  display: inline-flex;
  color: white;
  font-size: 20px;
  border-radius: 4px;
  font-weight: 600;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  border: none;
}
.btn.hover {
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.btn.active {
  background: rgba(0, 0, 0, 0.85);
}
.btns-container {
  display: flex;
  margin-top: 20px;
  gap: 12px;
}
.btns-container.btns-centered {
  justify-content: center;
}
.btns-container .align-end {
  margin-left: auto;
}
.add-btn i {
  margin-right: 5px;
  margin-left: -3px;
}
.has-blurred-white-bg {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.form-field {
  margin-bottom: 20px;
}
.form-field label.form-label {
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
.textbox, textarea {
  font-size: 18px;
  font-family: inherit;
  width: 100%;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  display: block;
}
.textbox:hover, textarea:hover {
  background: rgba(255, 255, 255, 0.95);
}
.textbox:focus, textarea:focus {
  background: white;
  outline: none;
}
.textbox:hover, .textbox:focus, textarea:hover, textarea:focus {
  border-color: rgba(0, 0, 0, 0.42);
}
.textarea {
  resize: vertical;
  min-height: 100px;
}

/*# sourceMappingURL=styles.css.map*/