body {
    --color: #aca1ff;
    --color2: #7462ff;
    margin: 0;
    background-color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
}

a {
    color: var(--color2);
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.1s;
}

b {
    color: var(--color2);
}

a:not(.imageLink):hover {
    opacity: 0.5;
}

main {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: white;

    overflow: hidden;
}

.linkToPortfolio {
    text-align: center;
    font-size: 1.2rem;

    background-color: var(--color2);
    padding: 1rem;
    box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    color: white;
}

.linkToPortfolio>a {
    display: block;
    color: var(--color2);
    font-weight: bold;
    text-decoration: none;
    background-color: white;
    margin: 2rem auto 0 auto;
    width: fit-content;

    padding: 0.8rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);

    opacity: 1 !important;

    transition: box-shadow 0.2s ease-in-out;

}

.linkToPortfolio>a:hover {
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);

}

.logo {
    font: bold 2rem arial, sans-serif;
    background-color: #292929;
    color: transparent;
    text-shadow: 1px 1px 2px var(--color2);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.logo>img {
    height: 2rem;
}

@media screen and (max-width: 400px) {
    .logo {
        font-size: 1.5rem;
        gap: 0.4rem;
        color: var(--color2);
        text-shadow: none;
    }

    .logo>img {
        height: 1.5rem;
    }

}

ul {
    padding-left: 0;
    list-style-type: none;
}

li {
    margin-bottom: 2rem;
}

.cheatsheetPages {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;

    max-height: 20rem;
    margin: 1rem 0;
}

.cheatsheetPages img {
    max-height: 10rem;
    max-width: 100%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);


    transition: box-shadow 0.2s ease-in-out;
}

.cheatsheetPages img:hover {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
}