/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  background-color: #fefdf9; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.navbar {
  width: 100vw;
  height: 8vh;
  background-color: #fefdf9; }
  .navbar #logo {
    width: 130px;
    margin-top: 20px;
    margin-left: 20px; }
  .navbar .wrapper {
    width: 30vw;
    margin-top: -30px;
    display: flex;
    justify-content: space-around;
    float: right;
    min-width: 300px;
    color: #656565;
    margin-right: 20px; }
    @media screen and (max-width: 2024px) {
      .navbar .wrapper {
        display: flex; } }
    @media screen and (max-width: 998px) {
      .navbar .wrapper {
        display: none; } }
    .navbar .wrapper li {
      color: #656565;
      font-family: merriweather, serif;
      letter-spacing: 1px;
      font-weight: 100;
      font-style: normal;
      font-size: 13px; }
      .navbar .wrapper li a {
        color: #656565;
        text-decoration: none; }
  .navbar .container {
    position: static;
    z-index: 200;
    width: 100%;
    heigh: 100%;
    text-align: center;
    left: 0;
    margin: 0 auto;
    font-family: 'Varela Round', sans-serif; }
    @media screen and (max-width: 2024px) {
      .navbar .container {
        display: none; } }
    @media screen and (max-width: 998px) {
      .navbar .container {
        display: flex; } }
    .navbar .container p {
      font-size: 20px; }
    .navbar .container a {
      display: absolute;
      position: relative;
      text-align: center;
      color: #fefdf9;
      text-decoration: none;
      font-size: 20px;
      overflow: hidden;
      top: 5px; }
      @media screen and (max-width: 495px) {
        .navbar .container a {
          font-size: 15px; } }
      .navbar .container a:after {
        content: '';
        position: absolute;
        background: #f2b3b5;
        height: 2px;
        width: 0%;
        transform: translateX(-50%);
        left: 50%;
        bottom: 0;
        transition: .35s ease; }
      .navbar .container a:hover:after, .navbar .container a:focus:after, .navbar .container a:active:after {
        width: 100%; }
  .navbar .button_container {
    position: absolute;
    top: 3.5%;
    right: 2%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease; }
    .navbar .button_container:hover {
      opacity: .7; }
    .navbar .button_container.active .top {
      transform: translateY(11px) translateX(0) rotate(45deg);
      background: #FFF; }
    .navbar .button_container.active .middle {
      opacity: 0;
      background: #FFF; }
    .navbar .button_container.active .bottom {
      transform: translateY(-11px) translateX(0) rotate(-45deg);
      background: #FFF; }
    .navbar .button_container span {
      background: #656565;
      border: none;
      height: 3px;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transition: all .35s ease;
      cursor: pointer; }
      .navbar .button_container span:nth-of-type(2) {
        top: 11px; }
      .navbar .button_container span:nth-of-type(3) {
        top: 22px; }
  .navbar .overlay {
    position: fixed;
    background: #f2b3b5;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden; }
    .navbar .overlay.open {
      opacity: .9;
      visibility: visible;
      height: 100%; }
      .navbar .overlay.open li {
        animation: fadeInRight .5s ease forwards;
        animation-delay: .35s; }
        .navbar .overlay.open li:nth-of-type(2) {
          animation-delay: .4s; }
        .navbar .overlay.open li:nth-of-type(3) {
          animation-delay: .45s; }
        .navbar .overlay.open li:nth-of-type(4) {
          animation-delay: .50s; }
    .navbar .overlay nav {
      position: relative;
      height: 70%;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-family: merriweather, serif;
      font-weight: 700;
      font-style: normal;
      font-size: 35px;
      letter-spacing: 3px;
      text-align: center; }
    .navbar .overlay ul {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      display: inline-block;
      position: relative;
      height: 100%; }
      .navbar .overlay ul li {
        display: block;
        height: 25%;
        height: calc(100% / 4);
        min-height: 50px;
        position: relative;
        opacity: 0; }
        @media screen and (max-width: 495px) {
          .navbar .overlay ul li {
            min-height: 0;
            height: 15%; } }
        .navbar .overlay ul li a {
          display: block;
          position: relative;
          color: #FFF;
          text-decoration: none;
          overflow: hidden; }
          .navbar .overlay ul li a:hover:after, .navbar .overlay ul li a:focus:after, .navbar .overlay ul li a:active:after {
            width: 100%; }
          .navbar .overlay ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0%;
            transform: translateX(-50%);
            height: 3px;
            background: #FFF;
            transition: .35s; }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%; }
  100% {
    opacity: 1;
    left: 0; } }
#hero {
  background-image: url(../images/heroimage.jpg);
  width: 100vw;
  height: 90vh;
  background-position: center; }
  @media screen and (max-width: 998px) {
    #hero {
      background-image: url(../images/heroimage_phone.jpg);
      background-size: cover;
      background-position: center; } }
  @media screen and (max-width: 665px) {
    #hero {
      background-image: url(../images/heroimage_phone.jpg);
      background-size: cover; } }
  @media screen and (max-width: 495px) {
    #hero {
      height: 85vh; } }
  #hero h1 {
    text-align: left;
    color: white;
    font-family: merriweather, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    letter-spacing: 2px;
    line-height: 60px;
    padding-left: 10vw;
    padding-top: 15vh; }
    @media screen and (max-width: 665px) {
      #hero h1 {
        font-size: 30px;
        line-height: 55px;
        padding-top: 10vh; } }
    @media screen and (max-width: 495px) {
      #hero h1 {
        font-size: 25px;
        line-height: 45px;
        letter-spacing: 1px;
        padding-top: 8vh; } }
  #hero img {
    padding-left: 10vw; }
    @media screen and (max-width: 495px) {
      #hero img {
        width: 75vw; } }

#home_sect1 {
  padding-top: 20vh;
  width: 90vw;
  height: 95vh;
  margin: auto; }
  @media screen and (max-width: 998px) {
    #home_sect1 {
      height: 130vh; } }
  @media screen and (max-width: 665px) {
    #home_sect1 {
      height: 190vh; } }
  @media screen and (max-width: 495px) {
    #home_sect1 {
      padding-top: 10vh;
      height: 185vh; } }
  #home_sect1 h2 {
    text-align: center;
    color: #373158;
    font-family: merriweather, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    letter-spacing: 3px; }
    @media screen and (max-width: 665px) {
      #home_sect1 h2 {
        font-size: 21px;
        letter-spacing: 3px; } }
  #home_sect1 p {
    text-align: center;
    color: #656565;
    font-family: filson-soft, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    width: 50vw;
    line-height: 25px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px; }
    @media screen and (max-width: 665px) {
      #home_sect1 p {
        width: 80vw;
        font-size: 13px;
        line-height: 20px; } }
  #home_sect1 #items {
    width: 90vw;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; }
    #home_sect1 #items .fooditem {
      width: 30vw;
      max-width: 400px;
      min-width: 300px;
      margin: auto; }
      @media screen and (max-width: 665px) {
        #home_sect1 #items .fooditem {
          width: 80vw;
          max-width: 400px;
          min-width: 400px; } }
      #home_sect1 #items .fooditem .food {
        width: 30vw;
        max-width: 400px;
        min-width: 300px;
        margin-top: 5vh; }
        @media screen and (max-width: 665px) {
          #home_sect1 #items .fooditem .food {
            width: 80vw;
            max-width: 400px;
            min-width: 400px; } }
        #home_sect1 #items .fooditem .food:hover {
          background-image: url(../images/swish.png);
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center; }
        #home_sect1 #items .fooditem .food img {
          width: 80%;
          margin: auto;
          display: flex;
          margin-bottom: 10vh; }
          @media screen and (max-width: 998px) {
            #home_sect1 #items .fooditem .food img {
              margin-bottom: 5vh; } }
      #home_sect1 #items .fooditem button {
        margin: auto;
        display: flex;
        background: #373158;
        width: 230px;
        height: auto; }
        #home_sect1 #items .fooditem button:hover {
          background: rgba(59, 49, 88, 0.8);
          transition: 1s ease; }
        #home_sect1 #items .fooditem button p {
          align-items: center;
          color: #fefdf9;
          text-align: center;
          padding-top: 15px;
          margin-top: 0;
          padding-bottom: 10px;
          margin-bottom: 0;
          letter-spacing: 2px; }

#home_sect2 {
  width: 100vw;
  height: 90vh;
  margin: auto;
  margin-top: 25vh; }
  @media screen and (max-width: 665px) {
    #home_sect2 {
      height: 135vh; } }
  @media screen and (max-width: 495px) {
    #home_sect2 {
      height: 105vh; } }
  #home_sect2 #owner {
    width: 35vw;
    position: absolute;
    margin-left: 10vw;
    margin-top: 8vh; }
    @media screen and (max-width: 665px) {
      #home_sect2 #owner {
        width: 90vw;
        margin-top: 45vh; } }
    #home_sect2 #owner img {
      width: 100%; }
  #home_sect2 #thestart {
    width: 70%;
    background-color: #f2b3b5;
    float: right; }
    @media screen and (max-width: 665px) {
      #home_sect2 #thestart {
        width: 100%; } }
    #home_sect2 #thestart #text {
      width: 50%;
      float: right;
      margin-right: 10vw;
      margin-top: 20vh;
      margin-bottom: 15vh; }
      @media screen and (max-width: 665px) {
        #home_sect2 #thestart #text {
          width: 80%;
          float: none;
          margin: auto;
          margin-right: none;
          margin-top: 17%;
          margin-bottom: 50%; } }
      #home_sect2 #thestart #text h1 {
        text-align: left;
        color: white;
        font-family: merriweather, serif;
        font-weight: 700;
        font-style: normal;
        font-size: 35px;
        letter-spacing: 3px;
        margin-left: -5vw; }
        @media screen and (max-width: 665px) {
          #home_sect2 #thestart #text h1 {
            font-size: 23px;
            letter-spacing: 1px;
            margin-left: 0px; } }
      #home_sect2 #thestart #text p {
        text-align: left;
        color: #373158;
        font-family: filson-soft, sans-serif;
        font-weight: 100;
        font-style: normal;
        font-size: 13px;
        line-height: 25px;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 20px; }
        @media screen and (max-width: 665px) {
          #home_sect2 #thestart #text p {
            font-size: 13px;
            line-height: 20px;
            margin-left: 10vw;
            margin-top: 15px; } }

#customize {
  width: 100vw;
  background-image: url(../images/customizebckgrnd.jpg);
  background-size: cover;
  background-position: center; }
  #customize #cust_text {
    padding-top: 25vh;
    padding-bottom: 25vh;
    width: 100%;
    height: 50%;
    align-items: center; }
    @media screen and (max-width: 665px) {
      #customize #cust_text {
        padding-top: 15vh;
        padding-bottom: 15vh; } }
    #customize #cust_text h2 {
      text-align: center;
      color: #373158;
      font-family: merriweather, serif;
      font-weight: 700;
      font-style: normal;
      font-size: 25px;
      letter-spacing: 3px; }
      @media screen and (max-width: 665px) {
        #customize #cust_text h2 {
          font-size: 21px;
          line-height: 28px;
          width: 90vw;
          margin: auto; } }
    #customize #cust_text p {
      text-align: center;
      color: #656565;
      font-family: filson-soft, sans-serif;
      font-weight: 300;
      font-style: normal;
      font-size: 15px;
      width: 50vw;
      line-height: 25px;
      margin: auto;
      margin-top: 10px; }
      @media screen and (max-width: 665px) {
        #customize #cust_text p {
          width: 80vw;
          font-size: 13px;
          line-height: 20px; } }
    #customize #cust_text a {
      text-decoration: none; }
      #customize #cust_text a button {
        margin: auto;
        display: flex;
        background: #373158;
        width: 250px;
        height: auto;
        margin-top: 20px; }
        @media screen and (max-width: 665px) {
          #customize #cust_text a button {
            margin-top: 30px; } }
        #customize #cust_text a button:hover {
          background: rgba(59, 49, 88, 0.8);
          transition: 1s ease; }
        #customize #cust_text a button p {
          align-items: center;
          color: #fefdf9;
          text-align: center;
          padding-top: 15px;
          margin-top: 0;
          padding-bottom: 10px;
          margin-bottom: 0;
          letter-spacing: 2px; }

footer {
  width: 100vw;
  height: 22vh;
  background-color: #373158;
  position: relative; }
  footer h3 {
    color: #fefdf9;
    font-family: filson-soft, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 13px;
    text-align: center;
    padding-top: 40px; }
  footer .social {
    width: 150px;
    display: flex;
    justify-content: space-around;
    margin: auto; }
    footer .social img {
      width: 30px;
      height: 30px; }
  footer p {
    color: #fefdf9;
    font-family: filson-soft, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 10px;
    text-align: center;
    padding-top: 20px; }

.sprinkles {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(../images/sprinkles.jpg); }
  @media screen and (max-width: 665px) {
    .sprinkles {
      height: 80%; } }
  .sprinkles #getstartedtext {
    width: 45vw;
    margin: auto;
    margin-top: 25vh;
    margin-bottom: 60vh; }
    @media screen and (max-width: 998px) {
      .sprinkles #getstartedtext {
        width: 60%; } }
    @media screen and (max-width: 665px) {
      .sprinkles #getstartedtext {
        width: 80%; } }
    .sprinkles #getstartedtext h1 {
      text-align: center;
      color: #373158;
      font-family: merriweather, serif;
      font-weight: 700;
      font-style: normal;
      font-size: 25px;
      letter-spacing: 3px; }
      @media screen and (max-width: 665px) {
        .sprinkles #getstartedtext h1 {
          font-size: 21px;
          letter-spacing: 3px; } }
    .sprinkles #getstartedtext p {
      text-align: left;
      color: #656565;
      font-family: filson-soft, sans-serif;
      font-weight: 300;
      font-style: normal;
      font-size: 15px;
      line-height: 25px;
      margin: auto;
      margin-top: 10px;
      margin-bottom: 20px; }
      @media screen and (max-width: 665px) {
        .sprinkles #getstartedtext p {
          width: 80vw;
          font-size: 13px;
          line-height: 20px; } }
    .sprinkles #getstartedtext a {
      text-decoration: none; }
      .sprinkles #getstartedtext a button {
        margin: auto;
        display: flex;
        background: #373158;
        width: 250px;
        height: auto;
        margin-top: 35px; }
        @media screen and (max-width: 665px) {
          .sprinkles #getstartedtext a button {
            margin-top: 30px; } }
        .sprinkles #getstartedtext a button:hover {
          background: rgba(59, 49, 88, 0.8);
          transition: 1s ease; }
        .sprinkles #getstartedtext a button p {
          align-items: center;
          color: #fefdf9;
          text-align: center;
          padding-top: 15px;
          margin-top: 0;
          padding-bottom: 10px;
          margin-bottom: 0;
          letter-spacing: 2px; }

#gallery {
  margin-top: 10vh; }

* {
  box-sizing: border-box; }

body {
  box-sizing: border-box;
  overflow-x: hidden; }

.carousel {
  background: none;
  margin-bottom: 18vh; }

.img1 {
  width: 80vw;
  height: 90vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: img1;
  background-image: url(../images/photo_1.jpg);
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 998px) {
    .img1 {
      height: 70vh; } }
  @media screen and (max-width: 665px) {
    .img1 {
      height: 50vh; } }

.img1:before {
  display: block;
  text-align: center;
  content: counter(img2);
  color: transparent; }

.img2 {
  width: 80vw;
  height: 90vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: img2;
  background-image: url(../images/photo_2.jpg);
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 998px) {
    .img2 {
      height: 70vh; } }
  @media screen and (max-width: 665px) {
    .img2 {
      height: 50vh; } }

.img2:before {
  display: block;
  text-align: center;
  content: counter(img3);
  color: transparent; }

.img3 {
  width: 80vw;
  height: 90vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: img3;
  background-image: url(../images/photo_3.jpg);
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 998px) {
    .img3 {
      height: 70vh; } }
  @media screen and (max-width: 665px) {
    .img3 {
      height: 50vh; } }

.img3:before {
  display: block;
  text-align: center;
  content: counter(img4);
  color: transparent; }

.img4 {
  width: 80vw;
  height: 90vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: img4;
  background-image: url(../images/photo_4.jpg);
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 998px) {
    .img4 {
      height: 70vh; } }
  @media screen and (max-width: 665px) {
    .img4 {
      height: 50vh; } }

.img4:before {
  display: block;
  text-align: center;
  content: counter(img5);
  color: transparent; }

.img5 {
  width: 80vw;
  height: 90vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: img6;
  background-image: url(../images/photo_5.jpg);
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 998px) {
    .img5 {
      height: 70vh; } }
  @media screen and (max-width: 665px) {
    .img5 {
      height: 50vh; } }

.img5:before {
  display: block;
  text-align: center;
  content: counter(img6);
  color: transparent; }

.img6 {
  width: 80vw;
  height: 90vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: img6;
  background-image: url(../images/photo_6.jpg);
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 998px) {
    .img6 {
      height: 70vh; } }
  @media screen and (max-width: 665px) {
    .img6 {
      height: 50vh; } }

.img6:before {
  display: block;
  text-align: center;
  content: counter(img1);
  color: transparent; }

/* external css: flickity.css */
* {
  box-sizing: border-box; }

body {
  font-family: sans-serif; }

.carousel {
  margin-top: 0; }

.step_1 {
  width: 100%;
  margin-top: 15vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: step_1; }
  @media screen and (max-width: 998px) {
    .step_1 {
      height: auto;
      margin-top: 5vh; } }
  @media screen and (max-width: 665px) {
    .step_1 {
      height: 50vh; } }
  .step_1 h1 {
    text-align: center;
    color: #373158;
    font-family: merriweather, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    letter-spacing: 3px;
    width: 100%;
    margin-bottom: 10vh; }
    @media screen and (max-width: 665px) {
      .step_1 h1 {
        font-size: 21px;
        line-height: 28px;
        margin: auto;
        width: 80%; } }
  .step_1 .howmany {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; }
    @media screen and (max-width: 998px) {
      .step_1 .howmany {
        margin-top: 5vh; } }
    .step_1 .howmany .many {
      background-color: #f2b3b5;
      width: 18vw;
      height: 25vh;
      max-width: 170px; }
      @media screen and (max-width: 998px) {
        .step_1 .howmany .many {
          height: 15vh; } }
      @media screen and (max-width: 665px) {
        .step_1 .howmany .many {
          width: 40%;
          height: auto;
          margin-bottom: 5vh; } }
      .step_1 .howmany .many h2 {
        color: #373158;
        font-family: filson-soft, sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 5em;
        text-align: center;
        padding-top: 5vh;
        padding-bottom: 5vh; }
        @media screen and (max-width: 998px) {
          .step_1 .howmany .many h2 {
            font-size: 3.5em;
            padding-top: 3vh;
            padding-bottom: 3vh; } }
      .step_1 .howmany .many .price {
        width: 100%; }
        .step_1 .howmany .many .price h3 {
          text-align: center;
          color: #fefdf9;
          font-family: merriweather, serif;
          font-weight: 700;
          font-style: normal;
          font-size: 20px;
          letter-spacing: 3px;
          padding-top: 3vh;
          padding-bottom: 3vh;
          background-color: #373158; }

/* cell number */
.step_1:before {
  display: block;
  text-align: center;
  content: counter(step_2);
  color: transparent; }

.step_2 {
  width: 100%;
  margin: auto;
  margin-top: 15vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: step_2; }
  @media screen and (max-width: 998px) {
    .step_2 {
      height: auto;
      margin-top: 5vh; } }
  .step_2 h1 {
    text-align: center;
    color: #373158;
    font-family: merriweather, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    letter-spacing: 3px;
    width: 100%;
    margin-bottom: 5vh; }
    @media screen and (max-width: 665px) {
      .step_2 h1 {
        font-size: 21px;
        line-height: 28px;
        width: 70%;
        margin: auto; } }
  .step_2 #flavor {
    width: 100%;
    height: 75vh;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; }
    .step_2 #flavor #cupcake {
      width: 20%;
      margin: auto;
      margin-left: 20%;
      margin-top: 5%; }
      @media screen and (max-width: 665px) {
        .step_2 #flavor #cupcake {
          width: 25%;
          margin-left: 35%; } }
      @media screen and (max-width: 495px) {
        .step_2 #flavor #cupcake {
          width: 35%;
          margin-left: 35%; } }
      .step_2 #flavor #cupcake #frosting {
        width: 100%; }
        .step_2 #flavor #cupcake #frosting img {
          width: 100%;
          position: relative; }
      .step_2 #flavor #cupcake #cake {
        width: 100%; }
        .step_2 #flavor #cupcake #cake img {
          width: 100%;
          position: relative;
          z-index: -2;
          margin-top: -90px; }
          @media screen and (max-width: 998px) {
            .step_2 #flavor #cupcake #cake img {
              margin-top: -50px; } }
          @media screen and (max-width: 665px) {
            .step_2 #flavor #cupcake #cake img {
              margin-top: -50px;
              width: 100%; } }
          @media screen and (max-width: 495px) {
            .step_2 #flavor #cupcake #cake img {
              margin-top: -40px; } }
      @media screen and (max-width: 998px) {
        .step_2 #flavor #cupcake img {
          width: 20%;
          margin: auto;
          display: flex;
          align-content: center; } }
      @media screen and (max-width: 665px) {
        .step_2 #flavor #cupcake img {
          width: 90%; } }
    .step_2 #flavor #pick {
      width: 50%;
      align-items: center;
      margin-top: 10vh; }
      @media screen and (max-width: 998px) {
        .step_2 #flavor #pick {
          margin-top: 5vh; } }
      @media screen and (max-width: 665px) {
        .step_2 #flavor #pick {
          width: 80%;
          margin: auto; } }
      .step_2 #flavor #pick h3 {
        text-align: left;
        color: #373158;
        font-family: filson-soft, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 15px;
        letter-spacing: 1px; }
      .step_2 #flavor #pick .choices {
        display: flex;
        justify-content: space-around;
        width: 50%;
        margin-top: 10px;
        margin-bottom: 35px; }
        @media screen and (max-width: 998px) {
          .step_2 #flavor #pick .choices {
            width: 100%; } }
        @media screen and (max-width: 665px) {
          .step_2 #flavor #pick .choices {
            margin-top: 5px;
            margin-bottom: 20px; } }
        .step_2 #flavor #pick .choices .thing {
          width: 100px; }
          .step_2 #flavor #pick .choices .thing h3 {
            color: #373158;
            font-family: filson-soft, sans-serif;
            font-weight: 300;
            font-style: normal;
            font-size: 15px;
            letter-spacing: 1px;
            text-align: center;
            width: 100%;
            margin-top: 5px; }
          .step_2 #flavor #pick .choices .thing #f_chocolate {
            width: 50px;
            height: 50px;
            background-color: #9e6f59;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #f_chocolate {
                width: 40px;
                height: 40px; } }
          .step_2 #flavor #pick .choices .thing #f_vanilla {
            width: 50px;
            height: 50px;
            background-color: #f6efd0;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #f_vanilla {
                width: 40px;
                height: 40px; } }
          .step_2 #flavor #pick .choices .thing #f_strawberry {
            width: 50px;
            height: 50px;
            background-color: #efa0a4;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #f_strawberry {
                width: 40px;
                height: 40px; } }
          .step_2 #flavor #pick .choices .thing #c_chocolate {
            width: 50px;
            height: 50px;
            background-color: #9e6f59;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #c_chocolate {
                width: 40px;
                height: 40px; } }
          .step_2 #flavor #pick .choices .thing #c_vanilla {
            width: 50px;
            height: 50px;
            background-color: #f6efd0;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #c_vanilla {
                width: 40px;
                height: 40px; } }
          .step_2 #flavor #pick .choices .thing #c_redvel {
            width: 50px;
            height: 50px;
            background-color: #8d3b41;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #c_redvel {
                width: 40px;
                height: 40px; } }
          .step_2 #flavor #pick .choices .thing #c_carrot {
            width: 50px;
            height: 50px;
            background-color: #e4aa72;
            margin: auto; }
            @media screen and (max-width: 998px) {
              .step_2 #flavor #pick .choices .thing #c_carrot {
                width: 40px;
                height: 40px; } }
      .step_2 #flavor #pick .filling {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 10px; }
        @media screen and (max-width: 998px) {
          .step_2 #flavor #pick .filling {
            width: 100%; } }
        @media screen and (max-width: 998px) {
          .step_2 #flavor #pick .filling {
            padding-bottom: 5vh; } }
        .step_2 #flavor #pick .filling #fill_chocolate {
          width: 10vw;
          background-color: #f2b3b5;
          margin-right: 5%; }
          @media screen and (max-width: 998px) {
            .step_2 #flavor #pick .filling #fill_chocolate {
              width: 15vw; } }
          @media screen and (max-width: 665px) {
            .step_2 #flavor #pick .filling #fill_chocolate {
              width: 35vw;
              margin-bottom: 10px; } }
          .step_2 #flavor #pick .filling #fill_chocolate h3 {
            font-family: filson-soft, sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 13px;
            text-align: center;
            padding-top: 20px;
            padding-bottom: 20px;
            color: #fefdf9; }
            @media screen and (max-width: 665px) {
              .step_2 #flavor #pick .filling #fill_chocolate h3 {
                padding-top: 15px;
                padding-bottom: 15px; } }
        .step_2 #flavor #pick .filling #fill_fruit {
          width: 10vw;
          background-color: #f2b3b5;
          margin-right: 5%; }
          @media screen and (max-width: 998px) {
            .step_2 #flavor #pick .filling #fill_fruit {
              width: 15vw; } }
          @media screen and (max-width: 665px) {
            .step_2 #flavor #pick .filling #fill_fruit {
              width: 35vw;
              margin-bottom: 10px; } }
          .step_2 #flavor #pick .filling #fill_fruit h3 {
            font-family: filson-soft, sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 13px;
            text-align: center;
            padding-top: 20px;
            padding-bottom: 20px;
            color: #fefdf9; }
            @media screen and (max-width: 665px) {
              .step_2 #flavor #pick .filling #fill_fruit h3 {
                padding-top: 15px;
                padding-bottom: 15px; } }
        .step_2 #flavor #pick .filling #fill_cream {
          width: 10vw;
          background-color: #f2b3b5;
          margin-right: 5%; }
          @media screen and (max-width: 998px) {
            .step_2 #flavor #pick .filling #fill_cream {
              width: 15vw; } }
          @media screen and (max-width: 665px) {
            .step_2 #flavor #pick .filling #fill_cream {
              width: 35vw;
              margin-bottom: 10px; } }
          .step_2 #flavor #pick .filling #fill_cream h3 {
            font-family: filson-soft, sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 13px;
            text-align: center;
            padding-top: 20px;
            padding-bottom: 20px;
            color: #fefdf9; }
            @media screen and (max-width: 665px) {
              .step_2 #flavor #pick .filling #fill_cream h3 {
                padding-top: 15px;
                padding-bottom: 15px; } }

/* cell number */
.step_2:before {
  display: block;
  text-align: center;
  content: counter(step_3);
  color: transparent; }

.step_3 {
  width: 80%;
  margin: auto;
  margin-top: -10vh;
  margin-right: 10px;
  border-radius: 5px;
  counter-increment: step_2; }
  @media screen and (max-width: 998px) {
    .step_3 {
      height: 70vh;
      margin-top: -15vh; } }
  @media screen and (max-width: 665px) {
    .step_3 {
      height: 50vh;
      padding-top: 0;
      width: 100%;
      margin: auto; } }
  .step_3 form {
    width: 100%;
    align-items: center;
    margin: auto;
    padding-top: 0;
    margin-top: 0; }
    @media screen and (max-width: 665px) {
      .step_3 form {
        width: 70%;
        margin-top: -18vh; } }
    .step_3 form h1 {
      text-align: center;
      color: #373158;
      font-family: merriweather, serif;
      font-weight: 700;
      font-style: normal;
      font-size: 25px;
      letter-spacing: 3px;
      width: 100%;
      margin-bottom: 5vh;
      margin-top: 0;
      padding-top: 0; }
      @media screen and (max-width: 665px) {
        .step_3 form h1 {
          font-size: 21px;
          line-height: 28px;
          width: 90%;
          margin: auto; } }
    .step_3 form #wrapper {
      width: 80%;
      margin: auto; }
      @media screen and (max-width: 665px) {
        .step_3 form #wrapper {
          width: 100%; } }
      .step_3 form #wrapper label {
        padding-bottom: 30px;
        width: 100%;
        margin: auto;
        font-family: filson-soft, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 15px;
        color: #373158;
        text-align: center;
        line-height: 30px; }
      .step_3 form #wrapper input {
        display: block;
        background-color: #f2b3b5;
        height: 5vh;
        width: 100%;
        border: none;
        padding-bottom: 10px;
        margin: auto;
        color: #373158;
        padding: 10px;
        font-size: 15px; }
      .step_3 form #wrapper a {
        text-decoration: none; }
        .step_3 form #wrapper a .button {
          background-color: #373158;
          color: #fefdf9;
          width: 30%;
          padding-top: 15px;
          padding-bottom: 15px;
          margin-top: 20%;
          text-align: center;
          margin: auto; }
          @media screen and (max-width: 665px) {
            .step_3 form #wrapper a .button {
              width: 50%; } }
      .step_3 form #wrapper .button:hover {
        opacity: 0.8;
        transition: ease 0.5s; }

/* cell number */
.step_3:before {
  display: block;
  text-align: center;
  content: counter(step_1);
  line-height: 200px;
  font-size: 80px;
  color: transparent; }

form {
  width: 50%;
  align-items: center;
  margin: auto;
  padding-top: 0; }
  @media screen and (max-width: 998px) {
    form {
      width: 70%; } }
  @media screen and (max-width: 665px) {
    form {
      width: 90%;
      margin-top: 10vh; } }
  form h1 {
    margin-top: 10vh;
    text-align: center;
    color: #373158;
    font-family: merriweather, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    letter-spacing: 3px;
    width: 100%;
    margin-bottom: 5vh; }
    @media screen and (max-width: 665px) {
      form h1 {
        font-size: 21px;
        line-height: 28px;
        width: 70%;
        margin: auto; } }
  form #wrapper {
    width: 80%;
    margin: auto; }
    form #wrapper label {
      padding-bottom: 30px;
      width: 100%;
      margin: auto;
      font-family: filson-soft, sans-serif;
      font-weight: 300;
      font-style: normal;
      font-size: 15px;
      color: #373158;
      text-align: center;
      line-height: 30px; }
    form #wrapper input {
      display: block;
      background-color: #f2b3b5;
      height: 5vh;
      width: 100%;
      border: none;
      padding-bottom: 10px;
      margin: auto;
      color: #373158;
      padding: 10px;
      font-size: 15px; }
    form #wrapper input[type=submit] {
      background-color: #373158;
      color: #fefdf9;
      width: 30%;
      padding-top: 10px;
      padding-bottom: 10px;
      margin-top: 5%;
      margin-bottom: 10vh; }
    form #wrapper input:hover[type="submit"] {
      opacity: 0.8;
      transition: ease 0.5s; }
    form #wrapper textarea {
      display: block;
      background-color: #f2b3b5;
      height: 25vh;
      width: 100%;
      border: none;
      padding-bottom: 10px;
      margin: auto;
      color: #373158;
      padding: 10px;
      font-size: 15px;
      resize: none; }

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