 .btn{
    background-color: transparent; 
    border: none;                  
    color: inherit;                
    padding: 0;                    
    cursor: pointer;               
  }

  .body {
    font-family: "Montserrat", sans-serif;
  }

  
  .btn-primary{
    background-color: white;
    padding:10px;
    border-radius: 2px;
    margin: 2px;

  }

  .player{
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  
  .back-image {
    background: url('./images/kite.png');
    background-size: cover;
    background-repeat: no-repeat;
  }

  .arrow {
    position: relative;
    padding-right: 30px; /* space for arrow */
}

.arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-top: 2px solid #0197B0;
    border-right: 2px solid #0197B0;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    margin-left: 10px;
}

.reverse-arrow {
    padding-left: 30px; /* space for arrow */
}

.reverse-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-top: 2px solid #0197B0;
    border-left: 2px solid #0197B0;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    margin-right: 10px;
}

.ingredient-title {
    color: #000;
    font-weight: bold;
    font-size: 1.25rem;
}

.container-background {
    background-color: #cceff7;
    padding: 40px;
    border-radius: 8px;
}

.center-image {
    max-width: 100%;
    height: 80rem;
}
.container-background {
    background-color: #cceff7;
    padding: 50px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

