.entry-content {
    text-align: center;
    margin-bottom: 6vh;
}

.entry-content h2.entryContentTitle {
    position: relative;
    overflow: visible;
    width: fit-content;
    margin: 0 auto;
    font-family: 'Inter';
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.entry-content li {
    width: fit-content;
    margin: 0 auto;
}

.entry-content * {
	font-family:'Inter'!important;	
}
	
.entry-content .entryContentTitle .entryContentTitleBg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: -1;
    transform: translate(-50%, -50%) scaleX(2);
}

html body .entry-content img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.entry-content p, .importantText {
    width: 50%;
    margin: 0 auto;
}

.entry-content p {
    margin-bottom: 3vh;
    width: 50%;
    font-family: 'Inter';
    font-size: 1em;
    font-weight: 500;
}

.importantText {
    position: relative;
    margin: 8vh auto;
    padding: 20px;
    box-sizing: border-box;
}

.importantText p {
    position: relative;
}

.importantText img {
    border-radius: 10px;
}

.importantText::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    background: linear-gradient(to right, #FFFFFF 0%, #808080 24.58%, #FFFFFF 51.34%, #CBCBCB 75.42%, #CBCBCB 100%);
    border-radius: 10px;
}

.importantTextContent p {
    width: 95%;
}

.entryContentImg {
    width: 100%;
    height: 35vh;
    margin: 50px 0;
}

@media only screen and (max-width: 1200px) {
    .entry-content p, .importantText {
        width: 60%;
    }
    .importantTextContent p {
        width: 95%;
    }
}

@media only screen and (max-width: 1000px) {
    .entry-content p, .importantText {
        width: 70%;
    }
    .importantTextContent p {
        width: 95%;
    }
}

@media only screen and (max-width: 600px) {
    .entry-content p, .importantText {
        width: 90%;
        font-size: 0.9em;
    }
    .importantTextContent p {
        width: 95%;
    }
}