header li:nth-of-type(5) {
    color: rgb(192, 96, 176);
}


section:first-child ol {
    border-bottom: 4px solid rgba(109, 6, 75, 0.753);
    border-top: 4px solid rgba(109, 6, 75, 0.753);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: space-around;
}

section:first-child li {
    list-style-type: none;
    padding: 20px 0;
    font-weight: bold;
    color: rgba(158, 44, 120, 0.879);
    font-size: 20px;
}

section:first-child li:nth-child(1),
section:first-child li:nth-child(3) {
    width: 15%;
}

section:first-child li:nth-child(even) {
    width: 5%;
}

section:first-child li:nth-child(5) {
    width: 40%;
}

section:last-child {
    width: 85%;
    margin: auto;
}

p {
    font-size: 20px;
}

section>div{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: space-evenly;
    align-items: center;
}

section>div img {
    width: 20%;
}

section>div p {
    width: 65%;
}

article{
    margin-top: 50px;
}

article:nth-of-type(4) {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: space-evenly;
}

article:nth-of-type(4) h3 {
    width: 100%;
}

article:nth-of-type(4) button {
    width: 15%;
    padding: 15px 0;
    color: rgb(161, 22, 124);
    background-color: rgba(229, 171, 201, 0.907);
    font-weight: bold;
    border: 2px solid rgb(125, 14, 96);
    margin: 0 15px;
    border-radius: 5%;
}

article:nth-of-type(5) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-evenly;
}

article:nth-of-type(5) h3 {
    width: 100%;
}

article:nth-of-type(5) div {
    width: 15%;
}

article>div img{
    width: 90%;
}

@media(max-width:520px) {
    h1 {
        font-size: 20px;
    }

    header ol {
        text-align: justify;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: wrap;
        align-content: start;
    }

    header li:first-child {
        display: none;
    }

    header li,
    header li:last-of-type {
        width: 50%;
        margin-left: 20px;
        font-size: 18px;
    }

    section:first-child li:nth-child(1),
    section:first-child li:nth-child(3) {
        width: 40%;
    }

    section:first-child li:nth-child(even) {
        width: 10%;
    }

    section:first-child li:nth-child(5) {
        width: 70%;
    }

    p {
        font-size: 18px;
    }

    h2 {
        font-size: 20px;
    }

    section>div {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    section>div img {
        width: 50%;
    }

    section>div p {
        width: 100%;
    }

    article{
        margin-top: 30px;
    }

    article:nth-of-type(4) button {
        width: 80%;
        margin-bottom: 10px;
    }

    article:nth-of-type(5) h3 {
        width: 100%;
    }

    article:nth-of-type(5) div {
        width: 30%;
    }

}