*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'KarlaRegular';
    src: url('./font/Karla/static/Karla-Regular.ttf') format(truetype);
    font-display: swap;
}
@font-face {
    font-family: 'KarlaBold';
    src: url('./font/Karla/static/Karla-Bold.ttf') format(truetype);
    font-display: swap;
}
:root {
    -Cyan: hsl(179, 62%, 43%);
    -Bright-Yellow: hsl(71, 73%, 54%);

    -Light-Gray: hsl(204, 43%, 93%);
    -Grayish-Blue: hsl(218, 22%, 67%);
}
body {
    -webkit-font-smoothing: antialiased;
    inline-size: 1.5;
    min-height: 100vh;
    font-size: 1rem;
    font-family: KarlaRegular;
    font-size: 16px;
    background-color: hsl(204, 43%, 93%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    .community {
        padding: 45px 30px;

        .title {
            font-family: KarlaBold;
            color: hsl(179, 62%, 43%);
            margin-bottom: 20px;
        }
        .subtitle {
            color: hsl(71, 73%, 54%);
            margin-bottom: 15px;
        }
        p {
            color: hsl(218, 22%, 67%);
        }
    }

    .card-bottom {
        display: flex;
        color: white;

        .card-price {
            width: 300px;
            background-color: hsl(179, 62%, 43%);
            border-radius: 0 0 0 5px;
            padding: 45px 30px;

            .subtitle {
                margin-bottom: 20px;
            }

            .price {
                display: flex;
                flex-direction: row;
                color: hsl(181, 69%, 69%);
                align-items: center;
                margin-bottom: 5px;

                .dollar {
                    color: white;
                    font-size: 34px;
                    margin-right: 15px;
                }
            }

            .content {
                margin-bottom: 30px;
            }

            button {
                background-color: hsl(71, 73%, 54%);
                color: white;
                border: none;
                padding: 15px 0;
                width: 100%;
                font-size: 16px;
                font-family: KarlaBold;
                border-radius: 5px;
                cursor: pointer;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            }
        }

        .whyus {
            width: 300px;
            background-color: hsl(179, 47%, 52%);
            border-radius: 0 0 5px 0;
            padding: 45px 30px;

            .title {
                margin-bottom: 20px;
            }

            .content {
                color: hsl(180, 91%, 83%);
                padding-right: 30px;
                line-height: 1.3;
            }
        }
    }
}
.attribution {
    position: absolute;
    font-size: 11px;
    text-align: center;
    bottom: 0;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}