.grid{
    max-width: 100vw;
    height: calc(100vh - 11em);
    padding-inline: 8em;
}

.question-p {
    font-size: 110%;
}
.story{
    max-width: inherit;
    padding-bottom: 1em;
}
.story .text{
    overflow-y: auto;
    line-height: 2em;
}
.story #response{
    max-width: fit-content;
    margin: auto;
}
.assets{
    height: 15vh;
    max-width: inherit;
    padding-inline: 5em;
    padding-top: 2em;
}
.answer{
    height: 15vh;
    max-width: inherit;
    position: relative;
}
.assets-ass{
    display: flex;
    justify-items: center;
    justify-content: center;
}
.form-group{
    display: flex;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 50%;
    margin-left: 26%;
}

.form-group > * {
    padding: 10px;
}
.button-group{
    display: flex;
    justify-content: center;
}
.button-group > *{
    width: 35%;
    margin-left: 20px;
}
.input-group{
    position: absolute;
    top: 50%;
    left: 25%;
}
@media screen and (max-width:700px){
    .input-group{
        left: 0%;
        max-width: 100%;
    }
    .form-group{
        max-width: 100%;
        margin-left: auto;
    }
    .grid{
        padding-inline: 1em;
    }
}

#balloon-container {
  height: 100vh;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.balloon {
  height: 125px;
  width: 105px;
  border-radius: 75% 75% 70% 70%;
  position: relative;
}

.balloon:before {
  content: "";
  height: 75px;
  width: 1px;
  padding: 1px;
  background-color: #FDFD96;
  display: block;
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: auto;
}

.balloon:after {
    content: "▲";
    text-align: center;
    display: block;
    position: absolute;
    color: inherit;
    top: 120px;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes float {
  from {transform: translateY(100vh);
  opacity: 1;}
  to {transform: translateY(-300vh);
  opacity: 0;}
}