* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #EEEEEE;
}

.bold {
    font-weight: bold;
}

.container {
    width: 80%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.container > div {
    background-color: white;
    padding: 10px;
    text-align: center;
    width: calc(97%/3);
    border: 2px solid #ddd;
}

.container  div  div {
    padding: 20px;
}

.title {
    margin-top: 25px;
    font-size: 30px;
}

.price, .sign {
    color: #197BEB;
}

.pricer {
    display: inline-flex;
    align-items: baseline;
}

.price {
    font-size: 50px;
}

.sign {
    position: relative;
    top: -10px; /* Adjust this value to control the position of the dollar sign */
    font-size: 30px;
}

.d {
    color:#888888;
}

.button {
    background-color: #197BEB;
    border-radius: 30px;
    color: white;
    width: fit-content;
    justify-self: center;
    padding: 25px !important;
    font-size: 15px;
    width: 150px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.two {
    position: relative;
}

.most-popular {
    position: absolute;
    height: 50px;
    color: white;
    width: 80%;
    background-color: #197BEB;
    padding: 10px;
    font-weight: bold;
    transform: translate(-50%, -65%);
}

.most-popular::before {
    left: -14px;
    top: 6px;
    position: absolute;
    content: "";
    border: 15px solid transparent;
    border-right-color: #0B56AC;
    transform: rotate(-135deg);
}

.most-popular::after {
    right: -14px;
    top: 6px;
    position: absolute;
    content: "";
    border: 15px solid transparent;
    border-right-color: #0B56AC;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .container > div {
        width: calc(97%);
    }
    .container {
        padding-top: 30px;
        gap: 40px;
        padding-bottom: 30px;
    }
}