body {
    background-color: #F0FAFF;
}

/* Sticky header with links
 */
.page-header {
    justify-content: center;
    position: sticky;
    top: 0;
    gap: 30px;
    display: flex;
    padding: 20px 0 20px 0;
    z-index: 1;
    background-color: #F0FAFF;
}

.header-nav-point {
    display: inline-flex;
    padding: 5px;
    border-top: 2px solid #497D73;
    border-bottom: 2px solid #497D73;
    color: black;
    text-decoration: none;
}

.header-nav-point.selected, .header-nav-point:hover {
    background-color: #E3FCF8;
    border-color: #414141;
}

.header-nav-point:hover {
    text-decoration: dotted;
}

/* It's a 6x6 image, it looks terrible otherwise */
img[src="resources/failed.png"] {
    image-rendering: pixelated;
}

.text {
    text-align: center;
    color: #325D54;
}

/* Used in index and blog */
/* block-preview is applied to <a> to the blogpost, not a div */
.blog-preview {
    color: #325D54;
    background-color: #0001;
    position: relative;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    min-width: 40vw;
    width: 600px;
    height: 200px; 
    border: 2px solid lightgray;
    margin-bottom: 20px;
}

.blog-preview > img {
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 200px;
    height: 200px;
}
.blog-preview > .left-side {
    position: absolute;
    top: 2px;
    left: 250px;
}