@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    background-color: #8382D9;
    color: ghostwhite;
    margin: 0px;
    font-family: 'Open Sans';
}

header {
    background-color: #615FCE;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

a {
    color: white;
}

.button {
    color: white;
    background-color: #3E3CC3;
    border-radius: 5px;
    padding: 8px;
}

.vlist {
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding: 5px;
    gap: 5px;
}

.vsep {
    display: flex;
    width: 100%;
}

.tile {
    background-color: #615FCE;
    padding:10px;
    margin: 15px;
    flex: 1;
    border-radius: 10px;
}

article {
    display: block;
    margin: 0 auto;
    width: 90%;
    background-color: #615FCE;
    border-radius: 10px;
    padding: 20px;
}

.article {
    display: grid;
    grid-template-columns: 20% 80%;
    align-items: start;
}

.toc {
    position: sticky;
    margin: 0 auto;
    width: 90%;
    background-color: #615FCE;
    border-radius: 10px;
}
