/**	Write your changes below	**/

        /* Pricing Box */
        .single-price {
        	padding: 3rem 2rem;
            background: var(--darkblue);
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            width: 370px;
        }
        /* Hover Effect */
        .single-price:hover {
            background: #240918;
            background-size: 92%;
            background-image: url(../imgs/bg-network.svg);
        }
        /* Title */
        .single-price h1 {
            font-size: 22px;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        /* Deals Section */
        .deals {
            margin: 20px 0;
        }
        .deals p {
            font-size: 16px;
            color: #ddd;
            margin-bottom: 10px;
        }      