* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

blockquote {
font-style: italic;
    margin-left: 30px;
margin-right: 30px;
}

.container {
    display: grid;
    grid-template-columns:
        repeat(1, 20% 1fr 20%);
    grid-template-rows: auto;
    column-gap: 1.5em;
    row-gap: 1em;
    padding: 7px;
}


.box .inner-box {
    display: grid;
    grid-template-columns:
        repeat(1, 1fr 1fr 1fr);
    grid-template-rows: auto;
    column-gap: 1em;
    row-gap: 0em;
}

.box .bio-box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    column-gap: 0em;
    align-items: start
}


.box.cards {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 1em;
    text-align: left;  
}

.inner-box {
    padding: 0;
}

.image {
    float: left;
    margin-right: 40px;
    max-height: 70%;
    max-width: 40%;
}

.text-content {
    text-align: justify;
}

h1 {
    display: none;
}
   
h2 {
    display: none;    
}

h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 350%;
    font-style: normal;
    margin-bottom: 0;
    text-align: left;
}


h3.left
{
    font-size: 200%;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: right;
}

h3.right
{
    font-size: 200%;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
}



.card h3{
    font-size: 200%;
    line-height:90%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}


h4 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    margin-top: 0px;
}

.card h4{
    font-family: 'Courier New', Courier, monospace;
    font-size: 90%;
    font-style: italic;
    text-align: left;
    font-weight: normal;
    margin-bottom: 5px;
}

.left
{
    margin-top: 5px;
    text-align: right;
}

.centre
{
    text-align: left;
    margin-bottom: 12px;
    margin-top: 20px;
}

.right
{
    text-align: left;
    margin-top: 0px;
}


figure {
    margin: 0;
    padding: 0;
}

figure img {
    width: 100%;
    margin-bottom: 5px;
    padding: 0%;
}

figcaption {
    font-style: italic;
    text-align: justify;
    line-height: 120%;
    margin-bottom: 20px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    margin-bottom: 0px;
    white-space: pre-line;
}

.keywords {
    font-family: 'Courier New', Courier, monospace;
    font-size: 100%;
    font-weight:normal;  
    text-align: right;
}

.index {
    text-align: justify;
    white-space:inherit
}

.card p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 70%;
    font-weight:normal;  
    text-align: left;
}

.subleft {
    font-family: 'Courier New', Courier, monospace;
    font-size: 100%;
    font-weight: normal;  
    text-align: right;
    margin-top: 0px;
    margin-bottom: 10px;
}

.author {
        font-family: 'Courier New', Courier, monospace;
        font-size: 130%;
        font-weight: normal;  
        text-align: left;
        margin-bottom: 0px;

}

.subright {
    font-family: 'Courier New', Courier, monospace;
    font-size: 100%;
    font-weight:normal;  
    text-align: left;
    margin-bottom: 10px;

}

.abstract {
    font-family: 'Courier New', Courier, monospace;
    text-align: justify;
    line-height: 1.5;
    font-size: 150%;
    font-weight:normal; 
}

ul {
    margin-left: 30px;
}

hr {
    border: none;       /* Removes the default border */
    height: 2px;        /* Thickness of the line */
    background-color: #333; /* Color of the line */
    margin-top: 20px;   /* Space above the line */
    margin-bottom: 10px;/* Space below the line */
}