#root {
    color: var(--color-primary-600);
    padding: 155px 37px;
}

#root section {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-bottom: 123px;
}

#root h1, 
#root h2, 
#root h3, 
#root h4, 
#root p {
    margin: 0;
}

#root section button,
#root section a {
    color: var(--color-primary-300);
}

#root ul {
    list-style-type: disc;
    padding-left: 40px;
}

#root li {
    margin-bottom: 21px;
}

#root li > span {
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    #root {
        padding: 304px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #root section {
        width: 532px;
        gap: 48px;
        padding-bottom: 158px;
    }
}

@media screen and (min-width: 912px) {
    #root {
        padding-top: 239px 0;
    }

    #root section {
        width: 640px;
    }
}

@media screen and (min-width: 1200px) {
    #root {
        padding: 256px 0;
    }

    #root section {
        width: 782px;
    }
}

@media screen and (min-width: 1400px) {
    #root {
        padding: 400px 0;
    }

    #root section {
        width: 847px;
        gap: 51px;
        padding-bottom: 203px;
    }
}