.article-Content {
    max-width: 90%;
    margin: auto;
}

.article-Content h1 {
    font-size: clamp(3vh, 2rem, 3vw);
    color: darkcyan;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-wrap: balance;
    max-width: 55rem;
    margin: 0.9rem auto;
}

.pSellect {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5%;
    align-items: center;
    background-image: linear-gradient(135deg, #0074aa, #009db1);
}

.pSellect img {
    max-width: 30%;
    min-width: 300px;
    /* padding: 1rem; */
    margin: auto;
    border-radius: 7px;
    box-shadow: 0px 8px 16px 0px rgba(0 0 0 / 0.3);
    margin: 1rem auto;
}

.ySellect {
    max-width: 50%;
    min-width: 275px;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1%;
    align-items: center;
    align-content: space-between;
    padding: 2em;
    margin: auto;
    flex-shrink: 2;
}

.ySellect button {
    min-width: fit-content;
    flex-basis: 6em;
    padding: 0.5em 0.5em;
    height: fit-content;
    margin: 0.2em;

    background-color:cornsilk;
    color: black;
    border: thin solid gray;
    border-radius: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.ySellect button:hover {
    /* box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19); */
    background-color:darkcyan;
    background-image: linear-gradient(45deg, var(--gen-blueGr), var(--gen-green), transparent);
    color: white;
    cursor: pointer;
    border-color: transparent;
    box-shadow: none;
}

.ySellect button:active {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    background-color: darkred;
    color: white;
    cursor: pointer;
}

.bcqtContent {
    margin: 2em 0px;
    border: thin solid gray;
    padding: 1em;
}

.bcqtContent article {
    margin: 1em auto 5em;
}

.bcqtContent h2 {
    font-size: 1.1em;
    color: black;    
}

.bcqtContent p, .bcqtContent ul {
    font-size: 0.9em;
    color: black;
}

.bcqtContent .abstract {
    font-style: italic;
}

.bcqtContent .author{
	font-variant: small-caps;
}

.bcqtContent .abs-center {
    font-style: italic;
    text-align: center;
}

.bcqtContent a {
    color: darkgreen;
    text-decoration: none;
    font-weight: bold;
}

.bcqtContent a:visited {
    color: hsla(350, 80%, 20%, 0.883);
}

.bcqtContent a:hover {
    color: brown;
    font-weight: bold;
    text-shadow: 0px 0px 1px rgba(0 0 0 / 0.3);
}

.bcqtContent img
{
    max-width: 90%;
    height: auto;
    display: block;
    margin: 1em auto;
}

#goBack a, #goBack a:visited {
    margin-left: auto;
    width: fit-content;
    display: block;
    color: white;
    background-color: var(--gen-blueGr);
    text-decoration: none;
    font-weight: normal;
    padding: 0.35rem 0.8rem;
    box-shadow: 0 0 16px 0 rgba(0 0 0 / 0.3);
    border-radius: 16px;
    border: 1px solid var(--gen-blueGr);
}

#goBack a:hover {
    background-color: white;
    box-shadow: none;
    color: var(--gen-blueGr);
}