html {
    background-color: darkslateblue;
    display: flex;
    justify-content: center;    
}

body {
    margin: 0;
    max-width: 8in;
    width: 100%;
    min-height: 100vh;
    background-color: black;
}

.back-button {
    text-decoration: none;
    color: inherit;
}

.back-div {
    width: max-content;
    background-color: lightsteelblue;
    corner-shape: squircle;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;    
    margin: 10px;
}

.back-div:hover {
    filter: invert();
}
.content {
    padding: 30px;  
    color: white;
}

.content > h1, h2 {
    text-align: center;
}

.content > p {
    color: white;
    text-indent: 30px;
    text-align: justify;
}

.link-holder {
    display: flex;
    flex-wrap: wrap;
    --tile-width: 200px;
    /* --tile-height:220px; */
    justify-content: center;
    color: black;
}

.link {
    text-decoration: none;
    color: inherit;
    margin: 10px;
}

.project-preview {
    width: var(--tile-width);
    /* height: var(--tile-height); */
    background-color: lightsteelblue;
    corner-shape: squircle;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;    
    margin: 0px;
    text-align: center;
}

.preview-img {
    width: 100%;
    background-color: steelblue;
    border-radius: 10px;
    corner-shape: squircle;
}
