.second {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--ok);
}

.second div {
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;

}

.second h1 {
    color: var(--design);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    margin: 12px;
    width: 80vw;
}

.second p {
    width: 80vw;
    color: var(--design);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}

.second ul {
    width: 80vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    list-style: none;
    padding-left: 20px;
}

.second ul li {
    color: var(--design);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.second ul li span {
    color: red;
    font-weight: bolder;
}


.first {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--ok);
}

.first div {
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;

}

.first h1 {
    color: var(--design);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    margin: 12px;
    width: 80vw;
}

.first ul {
    width: 80vw;
    display: flex;
    justify-content: center;
    list-style: none;
    flex-direction: column;
    padding-left: 20px;
}

.first ul li {
    color: var(--design);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.first ul li span {
    color: red;
    font-weight: bolder;
}

@media screen and (max-width:1300px) {
    .second h1 {
        width: 90vw;
    }

    .second p {
        width: 90vw;
    }

    .second ul {
        width: 90vw;
    }

    .first h1 {
        width: 90vw;
    }

    .first p {
        width: 90vw;
    }

    .first ul {
        width: 90vw;
    }
}