html {
  height: 100%; 
}

body {
  font-family: 'Roboto', sans-serif;
  height: 100%;
  background-color: #fefef5;
  color: #1f1f08;
  line-height: 1.5;
  font-size: 1.4rem;
  max-width: 50rem;
  margin: auto;
  padding: 0 max(2rem, calc((100vw - 50rem) / 2));
  
}

a, a:visited {
  color: #4e4e15;
  font-weight: bold; 
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px; 
}

h1, h2, h3, h4, h5, h6 {
  color: rgba(47, 47, 13, 0.9); 

  a {
    text-decoration: none; 
    }
}

header {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    
    h1 {
        color: inherit;
        margin-bottom: 0;
        margin-top: 0; 
    }
    img {    
        flex-shrink: 0;
    }
}


footer {
    font-size: smaller;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem; 
}

#resume {
    #experience {
        #langs ul {
            font-style: italic; 

            li {
                display: inline-block; 
            }
            li:not(:last-child)::after {
                content: ","; 
            }
        }
        section > ul {
            padding: 0;
            margin: 2rem;
            list-style-type: none; 
        }
    }
    #presentations {
        p:not(:first-child) {
            margin-top: 2rem; 
        }
        cite {
            font-style: italic; 
        }
        span, cite {
            display: block;
        }
        ul {
            list-style-type: none;
            padding-left: 0; 

            li {
                margin-bottom: 2rem; 
            }
        }
    }

}