@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&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%);
}

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

body {
    background: var(--Light-Gray);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: "Karla", sans-serif;
}

.container {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 1fr;
    width: 700px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section_1 {
    grid-column: 1/3;
    background: white;
    padding: 30px;
}

.section_1 h1 {
    color:hsl(179, 62%, 43%);
    margin-bottom: 10px;
}

.section_1 h3 {
    color:hsl(71, 73%, 54%);
}

.section_1  p {
    color:hsl(218, 22%, 67%);
    font-size: 16px;
}

.section_2 {
    background: hsl(179, 62%, 43%);
    padding: 30px;
    color: white;
}

span {
    font-size: 30px;
    font-weight: 600;
    vertical-align: middle;
    color: white;
}

.full {
    margin-top: -10px;
}

.section_3 {
    background: hsl(178, 33%, 56%);;
    padding: 30px;
    color: white;
}

.section_3 h3 {
    margin-bottom: 10px;
}

ul {
    list-style: none;
    line-height: 1.5rem;
    color: hsl(204, 43%, 93%);
}

p {
    color:hsl(204, 43%, 91%)
}

button {
    width: 90%;
    border: none;
    background:hsl(71, 73%, 54%);
    padding: 15px;
    margin-top: 2rem;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;

}


