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

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

.gray {
    color: hsl(218, 22%, 67%);
}

.teal {
    color: hsl(179, 62%, 43%)
}

main {
    font-family: 'Red Hat Display', sans-serif;
    background-color: hsl(0, 0%, 100%);
    color: hsl(227, 35%, 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    box-shadow: 0px 0px 10px hsl(227, 35%, 25%, 0.2);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 0;;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
}

section .subscription {
    background-color: hsl(179, 62%, 43%);
    color: hsl(0, 0%, 100%);
    gap: 1.7rem;
}

section .benefits {
    background-color: hsl(179, 62%, 43%);
    color: hsl(0, 0%, 100%);
    opacity: 0.6;
}

.subscription, .benefits {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.subscription h2 {
    font-size: 1.5rem;
}

.subscription p {
    font-size: 1rem;
    font-weight: 200;
}

.dollar {
    font-size: 2.5rem;
    font-weight: bold;
}

button {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    background-color: hsl(71, 73%, 54%);
    color: hsl(0, 0%, 100%);
;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.benefits p {
    font-size: 1rem;
    font-weight: 200;
}

.benefits span {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}