h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 2.5rem;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: normal;
}

p {
    margin-bottom: 10px;
}

h1 strong {
    color: #95c11f;
    font-weight: inherit;
}

main {
    background-color: #f9dfab;
    color: #363952;
}

main p, main h1, main h2, main ol {
    padding: 0 25px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.red-section {
    background-color: #ef7754;
    color: #ffffff;
    padding-bottom: 25px;
    padding-top: 15vh;
}

.red-section h1 {
    color: #9e4d34;
}

section.bubble-section {
    background-color: #577d6b;
    padding-top: 15px;
    padding-bottom: 15px;
}

.bubble, .cloud {
    position: relative;
    padding: 5px 10px;
    border-radius: 10px;
    width: calc(100% - 30px);
}

.bubble {
    color: #ffffff;
    background-color: #95c11f;
}

.cloud {
    background-color: #ffffff;
}

section > :last-child {
    margin-bottom: 0;
}

.subscription-steps {
    background-color: #4d586e;
    color: #ffffff;
    padding-top: 30px;
    padding-bottom: 15vh;
    margin-top: 100px;
}

.subscription-steps h1 {
    text-align: center;
    font-size: 1.5rem;
}

.subscription-steps ol {
    list-style-type: none;
    counter-reset: steps;
}

.subscription-steps li {
    list-style-type: none;
    counter-increment: steps;
    margin-bottom: 25px;
    clear: both;
    padding-top: 10px;
}

.subscription-steps li::before {
    content: counter(steps);
    color: #4d586e;
    float:left;
    background-color: white;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    top: -7px;
}