* { box-sizing: border-box;
}

@meta charset 'utf-8';
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap');


body {
    font-family: "lato", sans-serif;
    display: flex;
    margin: 0;
    flex-direction: column;
    min-height: 100vh;
}


main {
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


header {
    background-color: rgba(127, 237, 182, 0.46); 
    color: black;
    
}

header .contenedor {
    width: 0 auto;
    height: auto;
    padding: 0.8rem;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
}

nav {
    width: 100%;
    margin-left: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
}

nav ul li {
    flex-basis: 25%;
}

.logo{
    text-align: center;
}

nav ul li a {
    font-weight: 700;
    text-decoration: none;
    color: black;
    display: block;
    text-align: center;
    padding: .25em .5em;
}

nav a:hover {
    color: white;
    text-decoration: inherit;
}

#mapa {
    width: 50%;
    height: auto;
}

main h1 {
    text-align: center;
    text-shadow: 3px 3px 3px rgb(173, 173, 173);
    margin: 5px;
}

main h3 {
    text-align: center;
    font-weight: 300;
    margin: 0px;
}

#loana {
    margin: 10px;
    width: 50%;
    height: 75%;
    border-radius: 200px;
    border: 2px solid #00ffc4;
    box-shadow: .5em .5em .5em silver;
}

main div ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

main ul li {
    list-style: none;
}

main div ul li a {
    text-decoration: none;
    display: block;
    width: 4em;
    text-align: center;
}

main div ul li a img {
    width: 75%;
    height: auto;
}

main h4 {
    margin: 1em;
    text-align: center;
    font-weight: 700;
}

main p {
    padding: 0;
    margin: 0em 0 2em 0;
    text-align: center;
    font-size: 1.1em; 
}

.intereses {
    margin: 0;
    width: 310px;
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: rgba(134, 203, 169, 0.44);
    border-radius: 1em;
    box-shadow: .5em 0em .5em silver;
}

#intereses ul li img {
    width: 10%;
    height: auto;
}

.materias {
    margin: 0;
    width: 310px;
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: rgba(197, 255, 227, 0.53);
    border-radius: 1em;
    box-shadow: .5em 0em .5em silver;
    
    }

#materias ul li {
    font-weight: 400;
    font-size: 0.9em;
}

.companeras {
    margin: 0;
    width: 310px;
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: white;
    border: 3px solid #00ffc4;
    border-radius: 1em;
    box-shadow: .5em 0em .5em silver;
}

#companeras ul li a {
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    color: #0eb48e;
}

#companeras a:hover {
    color: #00ffc4;
    text-decoration: inherit;
}

article {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

article ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

article ul li {
    text-decoration: none;
    display: block;
    width: 15em;
}

article ul li img {
    width: 25%;
    height: auto;
}

article h5 {
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: underline;
}

article ul li p {
    font-weight: 300;
    font-size: 0.9em;
    text-align: left;
}

.rotulo {
    margin: 0;
    width: 310px;
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: white;
    border: 3px solid silver;
    border-radius: 1em;
    box-shadow: .5em 0em .5em silver;
}

.club {
    margin: 0;
    width: 310px;
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: rgba(152, 235, 177, 0.59);
    border-radius: 1em;
    box-shadow: .5em 0em .5em silver;
}


footer {
    background-color: rgba(106, 173, 145, 0.62);
    font-size: 10px;
}

footer .contenedor {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between
}

@media screen and (min-width: 780px) and (max-width: 1024px){
    
}

@media screen and (min-width: 480px) and (max-width: 780px){
    
}

@media screen and (max-width: 480px) {
    
}