/* body{
    
    background-color: aqua ;
} */
.block-content {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #014009;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    text-shadow: 1px 1px 2px #003610;

}


h1 {
    text-align: center;
}

h2 {
    font-size: 1rem;
    text-align: center;
}

/* p {
    padding: 0;
    margin: 0;
} */

.image-text-block {
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    color: var(--text-color);
    text-shadow: 1px 1px 2px #003610;
}

.blog-image-left {
    float: left;
    margin: 0 12px 12px 0;
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-image-right {
    float: right;
    margin: 12px 0 12px 12px;
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-image-right:hover,
.blog-image-left:hover {
    cursor: zoom-in;
    transform: scale(1.4);
    transition: transform 0.3s ease;
    z-index: 10;
}

.date {
    padding-top: 20px;
    display: block;
    text-align: right;
    color: #a09f9f;
    clear: both;
}

code {
    font-family: inherit;
    font-size: inherit;
    background: none;
    padding: 0;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 1px 1px 2px #003610;
    transition: color 0.3s;
    position: relative;
}

a:hover {
    color: var(--text-color) !important;
    /* font-size: 44px; */
    text-shadow: 1px 1px 2px #001F4D;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--text-color);
    transition: width 1.1s ease;
}

a:hover::after {
    width: 100%;
    /* underline grows on hover */
}

.links-list .hand {
    font-size: 3rem;
    margin-bottom: 10px;
    list-style: none;
}


@media (max-width: 768px) {

    .image-text-block {
        display: flex;
        flex-direction: column;
    }

    .blog-image-left,
    .blog-image-right {
        float: center;
        margin: 0;
        max-width: 100%;
        height: auto;
    }


}