/* GOOGLE FONTS */

@import 'https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700';

/* ANIMACIÓN */

@keyframes option-hover {
    from {border-bottom: 0px solid white;}
    to {border-bottom: 5px solid white;}
}

@-webkit-keyframes option-hover {
    from {border-bottom: 0px solid white;}
    to {border-bottom: 5px solid white;}
}

@-moz-keyframes option-hover {
    from {border-bottom: 0px solid white;}
    to {border-bottom: 5px solid white;}
}

@-ms-keyframes option-hover {
    from {border-bottom: 0px solid white;}
    to {border-bottom: 5px solid white;}
}

@-o-keyframes option-hover {
    from {border-bottom: 0px solid white;}
    to {border-bottom: 5px solid white;}
}

@keyframes responsive-menu {
    from {height: 50px;}
    to {height: 100%;}
}

/* ESTILOS */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #484848;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

a:visited {
    text-decoration: none;
    color: white;
}

a:active {
    text-decoration: none;
    color: white;
}

header {
    background-color: #242424;
    width: 100%;
    height: 70px;
    margin: 0;
}

h1 {
    width: 100%;
    height: 70px;
    margin: 0px;
    font-weight: 300;
    line-height: 70px;
    font-size: 26px;
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

navbar {
    float: left;
    background-color: #2c2c2c;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.menu {
    list-style: none;
    float: left;
    padding: 0;
    margin: 0;
    width: 100%;
    color: white;
    display: block;
    overflow: hidden;
}

.menu a {
    float: left;
    width: 20%;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-weight: 300;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
}

.menu .not-selected:hover {
    animation: option-hover 0.2s ease-out 0s 1;
    -webkit-animation: option-hover 0.2s ease-out 0s 1;
    -moz-animation: option-hover 0.2s ease-out 0s 1;
    -ms-animation: option-hover 0.2s ease-out 0s 1;
    -o-animation: option-hover 0.2s ease-out 0s 1;
    border-bottom: 5px solid white;
}

.menu .selected {
    box-sizing: border-box;
    border-bottom: 5px solid #f27509;
    animation: none;
}

.section-top {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.perfil {
    display: block;
    margin: 0 auto;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}

.avatar {
    margin: 0 auto;
    border-radius: 20px;
    border: 4px solid #f5f5f5;
    display: block;
}

h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    margin: 10px 0;
}

.social-icons {
    font-family: 'untitled-font-1';
    font-size: 19px;
    letter-spacing: 12px;
    line-height: 34px;
}
.social-icons a {
    text-decoration: none;
    color: white;
}

info {
    float: left;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.materias {
    padding-top: 20px;
    display: block;
    margin: 0 auto;
    width: 17%;
    text-align: left;
    min-width: 209px;
}

.materias p {
    font-weight: 300;
    font-size: 12px;
    margin: 0;
}
    
.materias .aprobadas {
    float: left;
    width: 117px;
}

.materias .cursando {
    float: right;
    width: 90px;
    margin-top: 0px;
}

.bold {
    font-size: 12px;
    font-weight: 700;
}

footer {
    float: left;
    width: 100%;
    padding-right: 20%;
    padding-left: 20%;
    padding-top: 20px;
    color: white;
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    box-sizing: border-box;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: dodgerblue;
}

footer a:visited {
    text-decoration: none;
    color: dodgerblue;
}

footer a:active {
    text-decoration: none;
    color: dodgerblue;
}