@charset "uft-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body{
    font-family:'Montserrat', sans-serif;
    align-items: center;
    text-align: center;
    margin: 5px;
}

/*encabezado*/
header{
    background-color: #5266DB;
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 15px;
}

.menu li{
    list-style: none;
    display: inline-block;
    padding: 5px;
    margin: 3%;
}

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

nav a:hover{
    color: #5266DB;
}

.equipo{
    border-radius: 2rem;
    border-color: black;
    border-width: 0.2rem;
    border-style: solid;
    width: 80%;
    margin: auto;
    padding-bottom: 1rem;
}

.maia,.juli, .orne, .nuestrawebapp, .comitente{
    border-radius: 2rem;
    border-color: black;
    border-width: 0.2rem;
    border-style: solid;
    width: 80%;
    box-shadow: 0px 5px 0px 0 rgba(0,0,0,1);
    font-weight: bold;
    margin: auto;
    margin: 1rem auto;
    padding: 1rem;
}

.maia img, .juli img, .orne img, .comitente img{
    border-radius: 30px;
    padding: 1rem;   
}

.maia a, .juli a, .orne a{
    text-decoration: none;
    color: #5266DB;
    font-weight: bold;
}

.maia a:hover, .juli a:hover, .orne a:hover{
    color: white;
}

.nuestrocomitente h2{
    border-radius: 2rem;
    border-color: black;
    border-width: 0.2rem;
    border-style: solid;
    width: 80%;
    margin: 2rem auto;
}

.comitente h1{
    padding-bottom: 5%;
}

.comitente p, .nuestrawebapp p{
    text-align: left;
}

.nuestrawebapp h2{
    padding-bottom: 5%;
}

.ubalogo, .logofadu, main .logodgpc{
    background-color: #5266DB;
    border-radius: 30px;
    padding: 5%;  
    margin: 1rem;
}

.ubalogo li, .logofadu li, main .logodgpc li{
    color: white;
    list-style: none;
}

.ubalogo h3, .logofadu h3, main .logodgpc h3{
    color: white;
    padding: 2%;
}

.mapas img, .plan img{
    width: 90%;
}

/*footer*/
footer{
    background-color: #5266DB;
    color: white;
    padding: 5%;
}

/* a partir de 640px */
@media (min-width: 57em) {

    header{
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
    }

    .compañeras{
       display: flex;
       justify-content: space-around;
    }

    .maia,.juli, .orne{
      margin: 1rem;
    }

    .menu ul{
        display: flex;
        justify-content: center;
    }

    .datosacademicos{
        display: flex;
    }
    
}

