* {
    color: black;
}

body {
    overflow: auto;
    background-image: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--grey);
}


main {
    height: 80vh;
    padding: 16px;
    border-radius: 8px;
    max-width: 1024px;
    overflow-y: scroll;
    background-color: white;
    text-align: justify;
    box-shadow: inset 0px 0px 40px 40px var(--grey);
}

a {
    text-decoration: underline;
}