* {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', helvetica, sans-serif;
    font-size: 1rem;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
}
h1 {
    margin: 0 0 .5rem 2rem;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
}
h1:before {
    content: "";
    background-color: #B0FF07;
    position: absolute;
    display: block;
    height: .3rem;
    width: 1.5rem;
    left: -2rem;
    top: .9rem;
}
p {margin-top: 0;}
p.bold {font-weight: 600;}
a {
    text-decoration: none;
    color: #000000;
    transition: .5s;
}
a:hover {
    cursor: pointer;
    color: #B0FF07; 
}

.col-3 {width: 75%;}
.col-1 {width: 25%;}
.texto-vertical {transform: rotate(-90deg);}

header {
    background-color: #B0FF07;
    height: 4rem;
}
header nav {height: 100%}
header nav ul {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav ul li {
    list-style: none;
    text-transform: lowercase;
    margin: 0;
    padding: .5rem;
}
header nav ul li.active {background: #FFFFFF;}
header nav ul li a {
    color: #000000;
    text-decoration: none;
    transition: .5s;
    font-size: 1rem;
}
header nav ul li a:hover {
    color: #1F7511;
    cursor: pointer;
}
header nav ul li a p {margin: 0}

main {
    padding: 1.5rem;
    min-height: calc(100vh - 6rem - 8.5rem);
}
main section {
    margin: 2rem 0
}
main section#logo {
    display: flex;
    margin-top: 0;
    justify-content: flex-end;
}
main section#logo img {
    height: 3rem;
    width: auto;
}

main section#alumnos {
    display: flex;
    justify-content: space-between;
    position: relative;
}
main section#alumnos div.alumnos-container {
    align-items: center;
    display: flex;
    margin: 1rem 0;
    z-index: 1;
}
main section#alumnos div.alumnos-inicial {
    align-content: center;
    background-color: #aaa9a9;
    border-radius: 100%;
    color: #B0FF07;
    display: flex;
    font-size: 2.5rem;
    height: 4rem;
    justify-content: center;
    line-height: 2.5rem;
    margin-right: 1rem;
    padding: .8rem;
    width: 4rem;
}
main section#alumnos div.alumnos-nombre {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: .3rem;
}
main section#alumnos div.alumnos-numero {text-transform: lowercase}
main section#alumnos div#equipo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    right: -4rem;
    top: 5rem;
    opacity: .3;
}
main section#alumnos div#equipo h1{text-transform: lowercase}
p.display {
    color: transparent;
    font-weight: 800;
    font-size: 6rem;
    margin: 0;
    line-height: 5rem;
    text-transform: uppercase;
    -webkit-text-stroke: .1rem #aaa9a9;
}
section#titulo p.display {-webkit-text-stroke: .1rem #B0FF07;}
main section#pertenencia div.pertenencia-container {
    background: #aaa9a9;
    padding: 2rem;
    margin: 2rem 0;
}
main section#pertenencia div#DGPC {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}
main section#pertenencia div.col-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}
main section#pertenencia div.col-1 p {
    color: #FFFFFF;
    margin: 0;
    font-size: 6rem;
    font-weight: 700;
}
main section#pertenencia div#UBA {
    background: #aaa9a9 url("../imagenes/logo-uba.svg") no-repeat 90% center;
    background-size: 40%;
}
main section.page-title p {
    font-size: 6rem;
    text-transform: uppercase;
}
div.mapa-container img {
    width: 100%;
    heigh: auto;
}
footer {
    background: #aaa9a9;
    border-top: .5rem solid #B0FF07;
    color: #FFFFFF;
    font-size: .8rem;
    height: 8.5rem;
    padding: 1rem;
}