        .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-self: center;
            padding: 50px 0;
            position: relative;
        }

        .wrapper > h1 {
            font-size: 40px;
            font-weight: 600;
            margin: 0 0 20px 0;
        }

        .wrapper > p {
            font-size: 20px;
            width: 700px;
        }

        .carousel-control.left,
        .carousel-control.right {
            background: transparent;
            color: #333;
        }

        .imgBox {
            width: 150px;
            height: 150px;
            margin: auto;
            border: 5px solid #595959;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .imgBox img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .carousel-inner {
            background: #f8f8ff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .carousel-caption {
            position: static;
            padding-bottom: 15px;
            padding-top: 0;
        }

        .carousel-caption h3 {
            font-size: 36px;
            margin-bottom: 15px;
            margin-top: 5px;
            font-family: "Monotype Corsiva";
            color: #000000;
            font-weight: bold;
            text-shadow: none;
        }

        .carousel-caption h4 {
            color: #000000;
            text-shadow: none;
        }

        .carousel-caption p {
            font-size: 20px;
            margin: auto;
            width: 70%;
            margin-bottom: 10px;
            font-family: "Bahnschrift SemiBold";
            font-weight: 300;
            letter-spacing: 2px;
            color: #000000;
        }

        .carousel-indicators li {
            background-color: #ddd;
            width: 20px;
            height: 4px;
            margin: 0 4px;
            border-radius: 2px;
        }

        .carousel-indicators .active {
            background-color: #ff6347;
        }

        .carousel-indicators {
            bottom: 20px;
        }

        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            font-size: 0;
        }

        .rating input[type="radio"] {
            display: none;
        }

        .rating label {
            font-size: 30px;
            color: rgba(187, 183, 183, 0.726);
            margin: 0 2px;
            cursor: pointer;
        }

        .rating label:before {
            content: "\2605";
        }

        .rating input[type="radio"]:checked ~ label:before {
            content: "\2606";
            color: #000000;
        }

        .delete-button {
            position: absolute;
            top: 0;
            right: 150px;
        }