html {
/*   background: url("../imgs/background.jpg"); */
  background-color: #fafafa; /*acdbff*/
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 60%; /* colocar 62.5% caso queira deixar font-size 1.4 = 14pt */
}

body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 1.48em;
  font-family: Helvetica, Verdana, Geneva, Arial, sans-serif, serif;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

h1 { 
  font-size: 160%;
  line-height: 1;  
  letter-spacing: -.02em;
}

h2 {
  font-size: 100%;
  margin-bottom: -1em;
  font-weight: bold;
  color: #660000;
}

a {
  color: #000080;
  text-decoration: underline;
}

a:hover {
  color: #444;
}

a.menu {
  color: #222;
  text-decoration: underline;
}

a.pubs {
/*   font-weight: bold; */
  text-decoration: none;
  color: green;
}

a.pubs:hover {
  text-decoration: underline;
}

img { 
  max-width: 100%; 
  height: auto;
}

.logos {
  display: flex;
  align-items: center;       /* vertically center text and logo */
  justify-content: space-between; /* name left, logo right */
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  max-height: 60px;
  height: auto;
  width: auto;
}

.profile-pic {
  float: left;
  max-height: 180px;
  margin: 0 10px 10px 0;
  border: 2px solid #a6a6a6;
}

ul.with-bullets {
  list-style-type: disc;
}

ul.without-bullets {
  list-style-type: none;
  padding-left:0;
}

ol {
 margin:.4em 0em -.8em 0;   
}

li.space {
  margin: 0;
  padding: 0 0 .8em 0;
}

hr {
  border-top: 2px solid #222;
}

footer {
  text-align: center;
}

@media (max-width: 1000px) {
  .profile-pic {
    max-height: 140px;
  }
}

@media (max-width: 600px) {
  .logos {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    max-height: 40px;
  }

  .profile-pic {
    float: none;            /* stop floating */
    display: block;         /* treat as block element */
    margin: 0 auto 15px;    /* center horizontally */
    max-width: 80%;         /* shrink on small screens */
    height: auto;
  }
}

}

/*@media (max-width: 1400px) {
  html {
    font-size: 80%;
    max-width: 1200px;
}
}*/

/*@media (max-width: 550px) {
  h1 {
    font-size: 120%;
}
}*/
