@font-face {
  font-family: "Work Sans", serif;
  src: url("assets/fonts/work_sans/EBGaramond-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans", sans-serif;
  src: url("assets/fonts/work_sans/WorkSans-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Epika", serif;
  src: url("assets/fonts/syne/EpikaSerifCondensedPremium-Regular.otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Epika", serif;
  src: url("assets/fonts/syne/EpikaSerifCondensedPremium-SemiBold.otf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  color: black;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(0deg, rgb(231, 157, 51), rgb(231, 157, 51) 10%, rgb(255, 205, 85) 40%, rgb(255, 205, 85) 100%);
  min-height: calc(var(--vh, 1vh) * 100);
  box-shadow: inset 0 0 40px 30px rgba(255, 255, 255, 0.75);
  padding-bottom: 10px;
}
body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/assets/images/bubbles.png);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  color: black;
  background: white;
}

::selection {
  color: black;
  background: white;
}

::-webkit-scrollbar {
  display: none;
}

h1 {
  font-family: "Epika", serif;
  font-size: 18px;
  line-height: 100%;
}

h2 {
  font-size: 55px;
  margin-top: 10px;
  font-family: "Epika", serif;
  line-height: 80%;
}

h3 {
  font-size: 50px;
  margin-top: 10px;
  font-family: "Epika", serif;
  line-height: 95%;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 130%;
  max-width: 550px;
  margin-bottom: 1rem;
}

img {
  display: block;
  width: 100%;
}

.main-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  position: relative;
}

.star-question-container {
  margin: 30px 0 60px 0;
  position: relative;
}

.star-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#rateYo svg {
  stroke: black;
  stroke-width: 15px;
  stroke-linejoin: round;
}

textarea {
  width: 100%;
  height: 150px;
  border: solid 1px black;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 20px 10px rgba(255, 255, 255, 0.8);
  padding: 20px;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
}

#submit-btn {
  width: calc(100% - 20px);
  background-color: rgba(118, 227, 171, 0.8);
  padding: 10px 10px;
  border-radius: 10px;
  border: solid 1px black;
  font-family: "Epika", serif;
  font-size: 35px;
  max-width: 760px;
  box-shadow: inset 0 0 20px 10px rgba(255, 255, 255, 0.5);
  transition: all 150ms ease-in-out;
  color: black;
}

#thanks-container {
  display: none;
}

.question-desc {
  margin-bottom: 30px;
}
.question-desc p {
  font-size: 12px;
  margin-bottom: 0.3rem;
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */