@charset "utf-8";

/* REGLAS GENERALES */

html{
    height: -webkit-fill-available;
    display: block;
}

body{
    font-family: "Mulish";
    background-color: #FFFFFF;
    text-align: center;
    display:flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    align-items: center;
}

/* 1era parte de css para celulares, mobile first */
/* index */


header .Menu ul nav li a{
    display:inline-block;
    text-align: center;
    font-size:20px;
    font-weight: 100;
    color:palevioletred;
    margin: 10px 30px;
    flex-direction: row;
    padding-right: 20px;
}

.Menu ul {
    padding:10px;
    display: flex;
    margin: auto;
    margin-top: 30px;
    justify-content: space-around;
    width:300px;
}

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

a:hover {
    text-decoration: none;
    background-color:palevioletred;
    color: white;
    padding: 10px 20px;
    border-radius: 3px;
}

main {
    flex-grow:1;
    display:flex;
    flex-direction:column;
    width: 100%;
}

/* DATOS PERSONALES */

.Perfil{
    display: block;
    margin:auto;
}

h1{
    text-align: center;
    color:palevioletred;
    font-weight:600;
    font-size: 20px;
    justify-content: center;
}

h3{
    text-align: center;
    color: #DB7093;
    font-weight: 600;
    font-size: 15px;
}


/* DATOS ACADÉMICOS */

.materias {
    display:inline-grid;
    flex-direction: row;
    justify-content: center;
}

li{ 
    list-style: none;
    font-weight: 200;
    padding: 1px;
}

.materias h4{
    font-size: 15px;
    font-weight: 100;
    background-color: #DB7093;
    color: #FFFFFF;
    border-radius: 3px;
    justify-content: center;
   
}

.cursada{
    font-size: 13px;
    color:#DB7093;
    margin: 0px 45px;
}


/* INFORMACION TP */

.TP{
   text-align: center;
   display:inline-block;
   justify-content: center;
}

  

.tema h5{
    font-weight: 900;
    font-size: 15px;
    color:palevioletred;
    background-color:mistyrose;
    border-radius: 3px;
    text-align: center;
    padding: 10px 50px;
}


/* INFORMACIÓN FACULTAD */ 

.docentes{
  font-size: 15px;
  color:palevioletred;
  margin: 0px 45px;   
}

h6{
    font-weight:200;
    font-size: 12px;
    color:palevioletred;
    margin:3px;
}    

.logos{
  display:inline-block;  
}

.dominio{
    color: palevioletred;
    background-color: mistyrose;
    font-size: 12px;
    font-weight: 100;
    padding: 10px 10px;
}
    
