:root {
    --text-color: #ffffff; 
    --h1-color: #ffffff; 
    /* --text-color: #CE0000; *//* red  rgba(206, 0, 0, 1)*/
    --bg-color: #417d63; /* green */
    /* --bg-color: #ffffff; */ /* white */
}

* {
    box-sizing: border-box;
    font-family: Lucida Sans Unicode; 
    font-size: 10pt; 
    /* font-weight: 100; */
    background: var(--bg-color); 
    color: var(--text-color); 
}

h1 {
    font-size: 14pt; 
    font-weight: bold; 
}

ul {
    list-style-type: none;
}

li {
    padding: 0px; 
}

nav {
    float: left; 
    width: 25%; 
    padding-top: 0%;
    padding-left: 10px;
    padding-right: 10px;
    /* background-color: lightgray; */  
}

nav ul {
    padding-left: 0px; 
    list-style-type: none;
}

nav li a:link {
    padding-left: 10px;
    /* padding-right: 20px; */
    color: var(--text-color);
    text-decoration: none;
    font-size: 120%; 
    display: inline-block;  
    width: 140px; 
    border-radius: 5px; 
    }

nav li a:visited {
    color: var(--text-color); 
    }

nav li a:hover {
    background-color: #f0f0f0; 
}    

article {
    float: left; 
    width: 75%; 
    padding-left: 5px;
    padding-right: 5px; 
    max-width: 700px; 
}

div.img img, div.foot table, div.button {
    width: 100%;  
    max-width: 700px; 
}

div.mini img{
    width: 90%;
}

div.mini table{
    width: 100%;
    max-width: 200px; 
}
div.mini table, div.mini th, div.mini td{
    text-align: center;
}
div.mini td{
    width: 30%; 
}
div.foot table, div.foot td{
    text-align: center; 
}

div.general {
    padding: 20px;
}

div.general p, div.general td{
    text-align: justify;
}

div.cv table, div.cv h1, div.cv td{
    text-align: justify;
}

div.cv td{
    vertical-align: top; 
}

td.td_s {
    width: 100px; 
}

td.td_l {
    width: 600px; 
}

div.biblio, div.cv {
    padding-top: 10px; 
}

div.biblio h1, div.biblio td, div.biblio ul{
    text-align: justify; 
}

div.biblio li, div.cv li, div.general li{
    padding: 5px; 
}

div.biblio h1, div.cv h1, div.general h1{
    color: var(--h1-color); 
    text-align: center; 
}

.date {
    font-weight: bold; 
}
.title {
    font-style: italic; 
    /* color: #900000; */  
}

div.button a{
    background-color: transparent; 
    display: inline-block; 
    color: var(--text-color); 
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none; 
    text-align: center;
    font-size: 200%;
    font-weight: bold; 
    transform: translateY(0px); 
    z-index: 1;
    border-radius: 10px; 
}

div.button a:hover{
    background-color: rgba(128, 128, 128, 0.5); 
}

div.button table{
    width: 100%;
}

div.button table, th, td{
    text-align: center;
}

@media (max-width: 600px){
    
    nav {
        width: 100%;
    }
    
    div.mini {
        float: right; 
        width: 100px; 
        height: 40px; 
        transform: translateX(-100px) translateY(-200px); 
    }

    article {
        width: 100%;
    }
    
    div.button {        
        width: 100%; 
        text-align: center; 
    }
    
    div.button a {
        padding: 5; 
    }
}