

h1 {
    background: url("/unreal-tips/img/article-title.svg") no-repeat;
    background-size: contain;
    font-size: 4rem;
    margin-left: 2%;
}

h2 {
    background: url("/unreal-tips/img/article-subtitle.svg") no-repeat;
    background-size: contain;
    color: #686868;
    font-size: 3rem;
    margin-left: 4%;
    padding-left:4%;
}

strong {
    color: blanchedalmond;
    background: radial-gradient(ellipse at left,#171717, #383838);
    padding:0.2rem;
}


label {
    display: inline-flex;
    padding: 0.5%;
    margin-left: 1%;
    background: white;
    font-size: 1.2rem;
    border-radius: 10px;
    border-bottom: 4px solid #c8c8c8;
}

article {
    text-align: justify;
    margin-top: -2%;
    margin-left: 5%;
    margin-right: 20%;
    font-size: 1.5rem;
    line-height: 1.58;
    display: block;
}


/*Onclick enlarge image*/
.backgroundBlur {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: hsl(0, 0%, 15%);
    opacity: 95%;
    z-index: 19;
}

.EnlargeImgBox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.EnlargeImgBox > img {
    display: flex;
    width: 90vw;
    padding: 10%;
    object-fit: contain;
}

/*hover effect mouse click form img with EnlargeImg function*/
img[onclick="EnlargeImg(this)"]:hover {
    cursor:pointer;
}

/************ Mobile Layout *******************/
@media print, screen and (orientation: portrait) {
    article {
        font-size: 1rem;
    }
    h1 {
        background-size: cover;
        font-size: 4rem;
    }
    h2 {
        font-size: 2rem;
        padding-left: 10%;
    }
}