@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');
html {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(204, 43%, 93%);
    width: 100%;
    min-height: 100vh;
}

.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px #00000033;
    overflow: hidden;
}

.item {
    padding: 30px;
    min-width: 300px;
}

.item-one {
    background-color: white;
}

.item-one h2 {
    color: hsl(179, 62%, 43%);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.item-one h3 {
    color: hsl(71, 73%, 54%);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.item-one p {
    color: hsl(218, 22%, 67%);
    line-height: 1.5rem;
    font-size: 1rem;
}

.item-two {
    background-color: hsl(179, 62%, 43%);
}

.item-two h3 {
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.item-two p {
    color: hsl(204, 43%, 93%);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.item-two p span {
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
}

.item-two .button {
    text-align: center;
    width: 100%;
    padding: 15px;
    background-color: hsl(71, 73%, 54%);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    font-weight: 700;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px #00000033;
    cursor: pointer;
}

.item-three {
    background-color: #4abebd;
}

.item-three h3 {
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.item-three p {
    color: hsl(204, 43%, 93%);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.5rem;
}

@media only screen and (min-width:768px) {
    .container {
        grid-template-columns: 50% 50%;
    }
    .item-one {
        grid-area: 1/1/2/3;
    }
    .item-two,
    .item-three {
        grid-row: 2;
    }
}