@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Rokkitt:300,500,700,900|Zilla+Slab:300i,400i,500,500i,600,700');

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

body {
    color: black;
    background-color: mediumaquamarine;
    min-height: 100vh;
    max-width: 100%;
    font-family: 'Rokkitt', serif;
    font-weight: 300;
}

header {
    font-family: 'Zilla Slab', serif;
    font-weight: 400;
    
        color: mediumaquamarine;
        background-color: white;
    
        height: 2em;
        max-width: 100vw;
    margin-bottom: 1em;
        padding: 1em;
        box-sizing: content-box;
    
        
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}

header ul{
    list-style: none;
    height: 4em;
    display: flex;
    flex-direction: row;
    align-items: center;
  
}

header ul li {
    background-color: mediumaquamarine;
    color: white;
    text-decoration: none;
    font-weight: regular;
    margin-left: 0.3em;
    padding: 0.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}

main {
    min-height: 100vh;
    margin: 1em;
    display: flex;
    flex-direction: column;
}
img {
    height: auto;
    width: 100%;
}
h1{
    font-family: 'Rokkitt', serif;
    font-size: 17pt;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0em;
    margin-right: 0.5em;
    text-align: right;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

h2{
     font-family: 'Zilla Slab', serif;
    font-size: 15pt;
    font-weight: 700;
    text-transform: uppercase;
    background-color: mediumaquamarine;
    color: white;
    
    height: auto;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding: 0.3em;
}
a {
    text-decoration: none;
}

p {
    text-indent: 1em;
    font-weight: 400;
}

li {
    list-style: none;
}

#academicos {
    margin: 1em;
}
h3 {
    padding: 0.3em;
      font-family: 'Zilla Slab', serif;
    font-size: 13pt;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 100%;
    display: flex;
    align-items: center;
}
#uba {
     font-family: 'Zilla Slab', serif;
    font-size: 17pt;
    font-weight: 900;
    text-transform: uppercase;
    font-style: bold;
    
    background-color: white;
    color: mediumaquamarine;
    max-width: 100%;
    margin-bottom: 0.3em;
    margin-top: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background-color: white;
    color: mediumaquamarine;
    padding: 1em;
    margin-top: 1.5em;
    display: flex;
    align-items: flex-end;
    
    font-family: 'Zilla Slab', serif;
    font-size: 10pt;
    font-weight: 400i;
    font-style: italic;
}