* {
    box-sizing: border-box;
}

body {
    background-color: #B8D4E3;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Courier New', Courier, monospace;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-title, .post-title {
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
    background-color: #4a4a4a;
    color: white;
    text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

img {
    width: 100%;
    height: auto;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    gap: 20px;
}

.projects-grid li {
    list-style-type: none;
}

.project-polaroid {
    padding: 20px;
    background: white;
    display: grid;
    grid-auto-flow: row;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 3px;
    text-align: center;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.project-polaroid:hover {
    transform: scale(1.02);
    box-shadow: 0 0px 20px rgba(0,0,0,0.2);
}


.post img {
    width: 100%;
    border: 1px solid lightgoldenrodyellow;
}