
iframe{
    width:800px;
    height: 450px;
    margin: 0 auto;


}


a{
    color:aquamarine;
}

.blog-post {
    position: absolute;
        display: flex;
        justify-content: center;
        /* margin-top: 22%; */
        flex-direction: column;
        /* margin-inline: 15%; */
        width: 100%;
        align-items: center;
        color: var(--article-text-color);
        font-family: "Roboto", sans-serif;
        font-size: 24px;
        line-height: 26.4px;
        /* padding-bottom: 2%; */
        top:38vh;

}
.intro p, .body-content p{
    margin-bottom: 24px;
}


.body-content{
    width: 800px;
    min-height: 75vh;
}

.title-block{
    width: fit-content;
}
.blog-post-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    color: #fff;
}

.date {
    color: #777;
    font-size: 14px;
    margin-top: 8px;
}

.intro {
    font-size: 18px;
    margin-bottom: 20px;
}

.body-content {
    font-size: 22px;
    line-height: 1.6;
}

.tags {
    margin-top: 20px;
}

.tag-list {
    list-style-type: none;
    padding: 0;
}

.tag-list li {
    display: inline;
    margin-right: 10px;
}

.tag-list li a {
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}
.tooltip {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.tooltip-default-color{
    color: aquamarine;
}
.tooltip .tooltip-image {
    visibility: hidden;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 3000;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    top:102%;
    display: none;
}

.tooltip:hover .tooltip-image {
    visibility: visible;
    opacity: 1;
    display:block;
}


.tooltip-left{
    /* right:450% !important; */
    left:-180% !important;
    margin-left: 0px !important;
}

.tooltip-left-extreme{
    /* border: solid 4px pink !important; */
    left:-280% !important;

}

.tooltip-right{
    left:0% !important;
    /* border: solid 4px purple !important; */

}



.return-to-blog a{
    color:white !important;
}


.return-to-blog a:hover{
    color:var(--custom-highlight) !important;
}
.date{
    text-align: right;
    margin-right: 5%;
}

ol, ul{
    margin-left: 25px;
    padding-bottom: 2%;

}


@media screen and (max-width:1200px){
    .body-content{
        width: 96%;
        overflow-x: hidden;
    }

    .blog-post-title{
        line-height: normal;
        text-align: center;
    }

    .blog-post{
        top:27vh;
    }
    iframe{
        width:96vw;
        height:54vw;
    }
}

@media screen and (max-width:900px) {
      .tooltip .tooltip-image {
        width: fit-content;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0; /* Remove the margin adjustment */
    }

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

    .tooltip-image img{
        width: 100vw;
        height: auto;
        pointer-events: none;

    
    }
    .tooltip-image{
        pointer-events: none;
    }

    .tooltip-left{
        /* right:450% !important; */
        left:50%;
        margin-left: 0 !important;
    }
    
    .tooltip-left-extreme{
        /* border: solid 4px pink !important; */
        left:50% !important;
    
    }
    
    .tooltip-right{
        left:50% !important;
        /* border: solid 4px purple !important; */
    
    }
    
}