.floating-button{
  border: 0px;
  position: fixed !important;
  border-radius: 2.7rem !important;
  bottom: 0px !important;
  right: 0px !important;
  background-color: #2C2240 !important;
  color: white !important;
  font-size: 13px;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  margin: 10px;
  width: 11em;
  height: 2.5em;
  text-align: centering;
  line-height: 1;
}


.footer-link-item {
  color: #2C2240;
  text-decoration: none;
  padding-bottom: 16px;
}

#fixedbutton {
  position: fixed;
  bottom: 0px;
  right: 0px; 
}

a:hover {
  color: #cccccc;
}

p {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

.thick-subhead {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  color: #2C2240;
  text-align: center;
}

.thick-headline {
  font-family: 'Asset',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,serif;
  color: #2C2240;
  text-align: center;
}

.card.bg-primary {
    background-color: #aa94d5 !important;
}

.card.bg-primary .card-subtitle.text-muted {
    color: #220b50 !important;
}

.custom-purple {
    background-color: #2C2240;
}

.custom-purple-2 {
  background-color: #8C68A5;
}

/* When hovering over div with class="card bg-primary", decrease opacity of image */
.card.bg-primary:hover .item-page_image {
    opacity: 0.5;
}

.homepage-cups{
    background-image: url("assets/cups_bg.png");
    min-height: 75vh;
    min-width: 100%;
    background-size: cover; /* Resize the background image to cover the entire container */
}

.extended-top-padding{
    padding-top: 30vh;
}

.item-page{
    max-width:20vw;
    height: auto;
}

.item-page_image{
    max-height: 40vh;
    width: auto;
    margin-bottom: 2vh;
}

.largeitem--page_image{
    max-height: 30vh;
    width: auto;
}

.item-page-heading{
    max-width:70vw;
    height: auto;
    background-size: cover; /* Resize the background image to cover the entire container */
    background-image: url("assets/glass_cups_purple.jpg");
}

/* text and fonts */

.text-serif {
  font-family: 'Asset',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,serif;
  color: #2C2240;
}

.featured-cup-title {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,serif;
  color: #2C2240;
}

/* fancy stuff for all done page */
.fancy-title {
    font-family: 'Nunito', sans-serif;
    margin-top: 30vh;
    color: rgba(0, 0, 0, 0.8);
    animation: rotate 2s linear infinite;
    /* -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg); */
}

.done-subtitle {
    /* -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg); */
    /* margin-top: 20vh; */
    color: rgba(0, 0, 0, 0.7);
}

@keyframes rotate {
    from {
        text-shadow: 0 0 10px #4fcf70;
    }
    15% {
        text-shadow: 0 0 10px #fad648;
    }
    50% {
        text-shadow: 0 0 10px #a767e5;
    }
    85% {
        text-shadow: 0 0 10px #12bcfe;
    }
    95% {
        text-shadow: 0 0 10px #44ce7b;
    }
    to {
        text-shadow: 0 0 10px #4fcf70;
    }
  }

.stars {
    height: 100vh;
    width: 100vh;
    overflow: hidden;
    opacity: 0.5;
    background-color: white;
    display: -webkit-box;
    display: flex;
  }
    
  /* Here using -webkit, we make angle 
  of 45 degree of falling star */
  .sky {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
    
  /* Here we are making roundabout balls  */
  .star {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2px;
    border-radius: 885px;
    background: linear-gradient(-45deg, 
      #eef0f5, rgba(0, 0, 255, 0));
    
    -webkit-filter: drop-shadow(0 0 6px #eef1f8);
    filter: drop-shadow(0 0 6px #d7dff0);
    -webkit-animation: tail 3000ms ease-in-out infinite,
      shooting 3000ms ease-in-out infinite;
    animation: tail 3000ms ease-in-out infinite,
      shooting 3000ms ease-in-out infinite;
  }
    
  /* Here we add before and after effect to star */
  .star::before,
  .star::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    height: 2px;
    background: linear-gradient(
      -45deg,
      rgba(0, 0, 255, 0),
      #eaeef8,
      rgba(0, 0, 255, 0)
    );
    -webkit-transform: translateX(50%) rotateZ(45deg);
    transform: translateX(50%) rotateZ(45deg);
    border-radius: 100%;
    -webkit-animation: shining 3000ms ease-in-out infinite;
    animation: shining 3000ms ease-in-out infinite;
  }
  .star::after {
    -webkit-transform: translateX(50%) rotateZ(-45deg);
    transform: translateX(50%) rotateZ(-45deg);
  }
    
  /* Here we are adding location of each 
     nth-child, animations, delays, and 
     before and after effects to each 
     and every balls(stars) */
  .star:nth-child(1) {
    top: calc(50% - -119px);
    left: calc(50% - 43px);
    -webkit-animation-delay: 4000ms;
    animation-delay: 4000ms;
  }
  .star:nth-child(1)::before,
  .star:nth-child(1)::after {
    -webkit-animation-delay: 4000ms;
    animation-delay: 4000ms;
  }
  .star:nth-child(2) {
    top: calc(50% - -43px);
    left: calc(50% - 37px);
    -webkit-animation-delay: 5000ms;
    animation-delay: 5000ms;
  }
  .star:nth-child(2)::before,
  .star:nth-child(2)::after {
    -webkit-animation-delay: 5000ms;
    animation-delay: 5000ms;
  }
  .star:nth-child(3) {
    top: calc(50% - -40px);
    left: calc(50% - 222px);
    -webkit-animation-delay: 7000ms;
    animation-delay: 7000ms;
  }
  .star:nth-child(3)::before,
  .star:nth-child(3)::after {
    -webkit-animation-delay: 7000ms;
    animation-delay: 7000ms;
  }
  .star:nth-child(4) {
    top: calc(50% - -29px);
    left: calc(50% - 113px);
    -webkit-animation-delay: 7000ms;
    animation-delay: 7000ms;
  }
  .star:nth-child(4)::before,
  .star:nth-child(4)::after {
    -webkit-animation-delay: 7000ms;
    animation-delay: 7000ms;
  }
  .star:nth-child(5) {
    top: calc(50% - 146px);
    left: calc(50% - 112px);
    -webkit-animation-delay: 3000ms;
    animation-delay: 3000ms;
  }
  .star:nth-child(5)::before,
  .star:nth-child(5)::after {
    -webkit-animation-delay: 3000ms;
    animation-delay: 3000ms;
  }
  .star:nth-child(6) {
    top: calc(50% - -108px);
    left: calc(50% - 160px);
    -webkit-animation-delay: 3000ms;
    animation-delay: 3000ms;
  }
  .star:nth-child(6)::before,
  .star:nth-child(6)::after {
    -webkit-animation-delay: 3000ms;
    animation-delay: 3000ms;
  }
  .star:nth-child(7) {
    top: calc(50% - 52px);
    left: calc(50% - 72px);
    -webkit-animation-delay: 7000ms;
    animation-delay: 7000ms;
  }
  .star:nth-child(7)::before,
  .star:nth-child(7)::after {
    -webkit-animation-delay: 7000ms;
    animation-delay: 7000ms;
  }
    
  /* This code will help to generate 
  effect in tail of star */
  @keyframes tail {
    0% {
      width: 0;
    }
    30% {
      width: 100px;
    }
    100% {
      width: 0;
    }
  }
    
  /* This code will generate shining 
  effect in head of star */
  @keyframes shining {
    0% {
      width: 0;
    }
    50% {
      width: 30px;
    }
    100% {
      width: 0;
    }
  }
    
  /* Here we are adding webkit-animation 
  to head of star for shining */
  @-webkit-keyframes shining {
    0% {
      width: 0;
    }
    50% {
      width: 30px;
    }
    100% {
      width: 0;
    }
  }
  /* end fancy stuff */