html, body {
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    background-color: hsl(204, 43%, 93%);
    height: 100%;
    color: #ffffff;
}

.container{
    width: 50%;
    height: 100%;
}
.main-box{
    border-radius: 10px;
}

/* Header section */

.header{
    border-radius: 10px 10px 0 0;
    background-color: #ffffff;
    color: hsl(218, 22%, 67%);
}
.header h5{
    font-size: 1.2rem;
    color: hsl(71, 73%, 54%);
    font-weight: 400;
}
.header h4{
    color: #2bb3b1;
    font-weight: 700;
}
.info{
    font-size: 1.2rem;
}

/* Monthly section */

.monthly-sub{
    background-color: #2bb3b1;
    border-radius: 0px 0 0 10px;
}
.price {
    font-size: 2rem;
}
.time {
    font-size: 1.1rem;
    color: #78d2d3;
}
.details {
    font-size: 1.1rem;
    color: #9ae7e8; 
}
.btn-sign-up{
    padding: 12px 0;
    font-size: 1rem;
    color: #ffffff;
    background-color: hsl(71, 73%, 54%);
}

/* Why Section */

.why-us{
    background-color: #4abebd;
    border-radius: 0 0 10px 0;
    color: #9ae7e8;
    font-size: 1rem;
}
.why-us h5{
    color: #ffffff;
}



/* Mobile Layout */

@media (max-width: 992px) {
    .container{
        width: 100%;
        height: 100%;
    }
    .monthly-sub{
        border-radius: 0;
    }
    .why-us{
        border-radius: 0 0 10px 10px;
    }
}

