@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

body {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}

main {
    max-width: 900px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #8766cf;
    margin: 20px 0 30px 0;
    text-align: center;
}

h2, h3 {
    color: #8766cf;
    margin: 20px 0 10px 0;
}

h3 {
    font-weight: 600;
}


p {
    text-align: justify;
    margin-bottom: 10px;
    text-indent: 2em;
}

ol>li {
    list-style-position: inside;
    margin-bottom: 10px;
    text-align: justify;
}

ol>li::marker {
    font-weight: 600;
}

.list-alpha > li {
    margin-left: 20px;
    list-style: upper-alpha;
}