@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Lexend+Deca:wght@100..900&family=Outfit:wght@100..900&display=swap');
*{
   margin:0;
   padding:0;
}
body{
    font-family: "Karla";
    font-size: 16px;
    display:flex;
    min-height: 100vh;
    align-items: center;
    background-color: hsl(204, 43%, 93%);  
   justify-content: center;
}
    
.container{
    max-height: 960px;
    margin:0px;
}
.principal{
    display:grid;
    border-radius: 7px;
    background-color: white;
    grid-template-columns: 50% 50%;
    grid-template-areas: "a a" "b c";
    overflow: hidden;
    margin: 2rem 1rem;
}
.card {
    padding: 40px;
}
.join{
    grid-area: a;
}
.monthly{
    grid-area:b;
    background-color: hsl(179, 62%, 43%);
}
.why{
    grid-area: c;
    background-color:hsl(179, 42%, 59%); 
}
h1{
    color:hsl(179, 60%, 52%);
    font-size: 26px;
    padding-bottom: 10px;
}
h3{
    color:hsl(71, 73%, 54%);
    font-size:20px;
    padding-bottom:5px;
}
.join p{
    color:hsl(218, 22%, 67%);
    font-weight:500;
    padding-top:8px;
}
h2{
    color: white;
    font-size:21px;
    padding-bottom: 20px;
}
h5 span.preco{
    color:white;
    font-size: 35px;
    font-weight: bold;
    padding-top: 10px;
    
}
h5 span.per{
    color:hsl(202, 47%, 89%);
    font-weight: 400;
    margin-left:10px;
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 10px;
    position:relative;
    top:-6px;
}
.monthly p{
    color:white;
    padding-top: 10px;
    font-size: 15px;
}
.monthly a {
    text-decoration: none;
    color: white;
    background-color:hsl(71, 73%, 54%);
    display: block;
    text-align: center;
    padding-top:15px ;
    padding-bottom: 15px;
    border-radius: 6px;
    font-weight: bold;
    margin-top:28px;
}
.why ul{
    color:hsl(203, 51%, 92%);
    list-style: none;
    padding:0px;
    
}
.why li{
    padding-bottom: 5px;
    font-size: 14px;
}
@media (max-width:768px) {
.principal{
    grid-template-columns: 100%;
    grid-template-areas: "a""b""c"
}
.card{
    padding: 30px;
}
}