.customFlavor {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}
.customFlavor h2 {
    margin: 0;
    font-size: clamp(20px, calc(20px + (10 * ((100vw - 380px) / 170))), 30px);
}
.customFlavor ul {
    margin: 0;
    padding-bottom: 10px;
    font-size: clamp(15px, calc(15px + (5 * ((100vw - 380px) / 170))), 20px);
}
.customFlavor li {
    word-break: break-word;
}
.customFlavor p {
    font-size: clamp(15px, calc(15px + (5 * ((100vw - 380px) / 170))), 20px);
}
.customFlavorBanner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 45px;
    margin-top: clamp(15px, calc(15px + (35 * ((100vw - 380px) / 170))), 50px);
    margin-bottom: clamp(15px, calc(15px + (35 * ((100vw - 380px) / 170))), 50px);
}
.customFlavorBanner img {
  width: clamp(28px, calc(28px + (22 * ((100vw - 300px) / 250))), 50px);
}
.customFlavorBanner h1 {
    color: #A50cf8;
    -webkit-text-stroke: 1px black; /* Outline width and color */
    font-weight: bold;
    font-size: clamp(28px, calc(28px + (22 * ((100vw - 300px) / 250))), 50px);
    margin-left: clamp(5px, calc(5px + (5 * ((100vw - 300px) / 250))), 10px);
    white-space: nowrap;
}
.customFlavorContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    width: 1150px;
    padding-top: 0px;
    margin-bottom: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
}

.cakesAndFillings, .frostingsAndToppings{
    display: flex;
}

.customCakes, .customFrostings{
    display: flex;
    flex-direction: column;
    width: 400px;
    max-width: 100%; 
}

.customFillings, .customToppings {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.backToTop {
  width: 1150px;
  display: flex;
  justify-content: flex-end;
  padding-right: clamp(10px, calc(10px + (10 * ((100vw - 300px) / 250))), 20px);
}

.backToTopEllipse {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(100px, calc(100px + (50 * ((100vw - 300px) / 250))), 150px);
  height: clamp(35px, calc(35px + (15 * ((100vw - 300px) / 250))), 50px);
  background-color: #A50cf8;
  border-radius: 25px; /* Create rounded corners */
  font-weight: bold;
  color: black;
  cursor: pointer; /* Change the cursor to a pointer when hovered */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow around the ellipse button */
  transition: 0.5s;
  letter-spacing: 1px;
  gap: 0px;
  margin-bottom: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
}
.backToTopEllipse h1 {
  font-size: clamp(12px, calc(12px + (4 * ((100vw - 300px) / 250))), 16px);
  color: #1bfc54;
  -webkit-text-stroke: 1px black; /* Outline width and color */
  white-space: nowrap;
  margin: 0;
  padding-left: clamp(10px, calc(10px + (6 * ((100vw - 300px) / 250))), 16px);
  line-height: 1; /* Normalize line height */
}
.backToTopEllipse:hover {
  background-color: #1bfc54;
}
.backToTopEllipse:hover h1 {
  color: #A50cf8;
}
.backToTopEllipse:hover .upArrowDefault {
  opacity: 0;
  display: none;
}
.backToTopEllipse:hover .upArrowHover {
  opacity: 1;
  display: inline-block;
}

.upArrowDefault {
  width: clamp(24px, calc(24px + (6 * ((100vw - 300px) / 250))), 30px);
  height:  clamp(15px, calc(15px + (15 * ((100vw - 300px) / 250))), 30px);
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}

.upArrowHover {
  width: clamp(24px, calc(24px + (6 * ((100vw - 300px) / 250))), 30px);
  height:  clamp(15px, calc(15px + (15 * ((100vw - 300px) / 250))), 30px);
  display: none;
  transition: opacity 0.3s ease-in-out;
}


@media screen and (max-width: 1200px) {

    .cakesAndFillings, .frostingsAndToppings {
        flex-direction: column;
    }

    .customFlavorContainer {
        width: 95vw
    }
      .backToTop {
        width: 95vw;
    }
}

@media screen and (max-width: 420px) {
    .customCakes, .customFrostings {
        width: 100%;
    }
}
