.background {
    background-image: linear-gradient(135deg, red 0% 20%, blue 50% 50%, yellow 80% 100%);
    /*background-color: red;*/

    position: fixed;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.dimmer {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #0004;
    z-index: 10;
    overflow-y: scroll;
}

.scroller {
    display: flex;
    flex-direction: column;
    gap: 10vh;
    padding: 10vh;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    z-index: 100;
}

.project {
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 3rem;
    background-color: #0008;
    padding: 3rem;
    border-radius: 2rem;
}

.langHeader {
    font-size: 2rem;
    align-self: center;
}

.code {
    font-size: 1.2rem;
    color: white;
}

.description {
    font-size: 1.5rem;
}

a {
    color: white;
    font-style: italic;
    text-decoration: underline;
}