@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: lavender;
}

::selection {
    background-color: #000;
    color: white;
}

.wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.pricing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.pricing .text {
    padding: 40px 0;
}

.text h2 {
    color: #333;
    font-size: 35px;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 30vh;
}

.cards-row {
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 50px 40px;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.card p {
    font-size: 30px;
}

.card p,
.card h3 {
    padding: 10px;
}

.card ul {
    list-style-type: circle;
}

.card li {
    padding: 10px 0;
}

.card li:nth-last-child(1) {
    padding-bottom: 40px;
}

button {
    background-color: #0A66C2;
    color: #fff;
    padding: 8px 18px;
    cursor: pointer;
    position: absolute;
    bottom: 22px;
    border-radius: 20px;
    border: transparent;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.3);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

div.card:nth-of-type(1),
div.card:nth-of-type(3) {
    background-color: white;
    color: #333;
    height: 480px;
}

div.card:nth-of-type(2) {
    background-color: #333;
    color: white;
    margin: 0 20px;
    width: 330px;
    height: 520px;
}

div.card:nth-of-type(1) button {
    background-color: rgba(0, 128, 0, 0.9);
}
