body {
    font-family: sans-serif;
    text-align: center;
    color: #1f1017;
    background-color: pink;
    background-image: url("bg.png");
    text-shadow: 0.5pt 0.5pt #fbbfcb;
}

.left-align {
    text-align: left;
}

a {
    color: dodgerblue;
    transition: color 0.3s;
}

a:visited {
    color: dodgerblue;
}

a:hover {
    color: blue;
}

hr {
    border: 1px palevioletred solid;
    border-radius: 2px;
}

#main {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    background-color: #ffffed;
    padding: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: palevioletred;
    border-radius: 30px;
}

.code-block {
    font-family: monospace;
    font-size: 12pt;
    background-color: #0f0007;
    border-radius: 3px;
    color: #ffffed;
    padding-left: 5px;
    padding-right: 5px;
    word-wrap: break-word;
}

pre {
    font-family: sans-serif;
    font-size: 12pt;
}

.button-link {
    width: 18%;
    height: 48px;
    background-color: #fbbfcb;
    color: #1f1017;
    border-width: 3px;
    border-style: solid;
    border-color: palevioletred;
    border-radius: 30px;
    transition: border-color 0.3s;
    margin-bottom: 4px;
    cursor: pointer;
}

.button-link:hover {
    border-color: pink;
}

.small-button-link {
    width: 15%;
    height: 32px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 384px;
    margin: 0 10px;
    Text-align: center;
    border: 3px palevioletred solid;
    padding-bottom: 15px;
    padding-top: 30px;
    border-radius: 30px;
    margin-bottom: 10px;
    background-color: white;
}

.gallery-image {
    max-width: 384px;
    max-height: 384px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

table
{
    border: 1px solid black;
    background-color: white;
    color: black;
    font-family: monospace;
    width: 90%;
    border-collapse: collapse;
}

td, th 
{
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th 
{
    text-align: center;
}

tr:nth-child(even) 
{
    background-color: #F9E0E5;
}

.blogpost
{
    border-width: 3px;
    border-style: solid;
    border-color: palevioletred;
    border-radius: 30px;
    margin: 10px;
    padding: 10px;
    display: inline-block;
    width: 40%
}

.eighty-eight 
{
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
}

#eighty-container
{
    max-width: 66%;
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-color-scheme: light) or (prefers-color-scheme: dark){

    body {
        text-shadow: 0.5pt 0.5pt #fbbfcb77;
    }

    #main {
        background-color: #ffffedaa;
        -webkit-backdrop-filter: blur(4px);
        -o-backdrop-filter: blur(4px);
        -moz-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    .code-block {
        background-color: #0f000777;
    }

    .button-link {
        background-color: #fbbfcbaa;
    }
}

@media screen and (min-width: 1200px) {
    #main {
        width: 60%;
    }
}

@media screen and (max-width: 1200px) {
    #main {
        width: 90%;
    }
}

@media screen and (max-width: 800px) {
    .button-link {
        width: 49%;
        height: 72px;
        font-size: large;
        margin-bottom: 8px;
    }
}

@media print
{
    body {
        color: black;
        background-color: white;
        text-shadow: 0;
    }

    hr {
        border: 1px black solid;
        border-radius: 2px;
    }

    #main
    {
        border: none;
        width: 100%;
    }

    .button-link
    {
        border: none;
        border-radius: 0;
        height: 32px;
    }
}


