@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,400;0,600;0,800;1,500;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

/*   selector {propiedad:valor;}   
font family es para la tipografia
text align es para centrar o descentrar*/


/*   el atajo para el color es ctrl e */


/* Versión Mobile*/

* {
    padding: 0%;
    margin: 0%;
    transition: all 0.5s;
}

header {
    text-decoration: none;
}

h1 {
    padding: 1rem;
    margin: 1rem;
    color: #ffffff;
    font-size: 2.5rem;
    text-decoration: none;
    text-shadow: 1px 1px 8px #ffffff;
}

.title-v {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-style: italic;
}

.title-n {
    font-family: 'Urbanist', sans-serif;
    font-weight: 900;
    font-style: italic;
}

.title-06 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
}

nav {
    padding: 1rem;
    font-size: 1.25rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-decoration: none;
}

.nav-bar a {
    margin: 1rem;
}

nav .flex-box-nav {
    display: flex;
    justify-content: space-around;
}

nav .flex-box-nav a {
    width: 100%;
}

nav a {
    color: #ffffff;
    text-decoration: none;
}

.link-borde:hover {
    border: 0.1rem solid #ffffff;
    padding: 0.5rem;
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
    border-top-left-radius: 45%;
    border-top-right-radius: 45%;
}

.link-activo {
    border: 0.1rem solid white;
    border-radius: 45%;
    padding: 0.2rem;
}

body {
    background-color: black;
    background-image: url(..//img/background-mobile.svg);
    background-size: 100%;
    background-attachment: fixed;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
}

.flex-box {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

section article div {
    padding: 1.5rem;
}

section article div a {
    text-decoration: none;
    color: #ffffff;
}

.borde-redondeado-avatar {
    border-radius: 17%;
    width: 75%;
    padding: 0.7rem;
    border: 0.1rem solid #ffffff;
}

.art-flex {
    width: 45%;
}

.nombre-alumno {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-style: italic;
}

.apellido-alumno {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* background es para fondo pero si quiero cambiar tipografia es solo color*/

h2 {
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.25rem;
    text-align: left;
    padding: 3rem;
    padding-bottom: 1rem;
}

.descrip-app {
    color: #ffffff;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.7rem;
    text-align: left;
    padding: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

h3 {
    color: white;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    text-align: left;
    padding-left: 3rem;
}


/* para hacer que un parrafo especifico <p> cambie de color o tamaño hay que aclarar
que parrafo es especificamente, no poner <p> solo  --> 1rem son 16 pixeles*/

footer p {
    padding-right: 3rem;
    padding-left: 3rem;
    padding-top: 3rem;
    color: rgba(192, 192, 192, 0.89);
    font-size: 0.5rem;
    font-family: 'Libre Baskerville', serif;
}


/* Versión Grande Web*/

@media (min-width:576px) {
    body {
        background-color: black;
        background-image: url(../img/background.svg );
        background-size: 100%;
        background-attachment: fixed;
        font-family: 'Urbanist', sans-serif;
        margin: 1rem;
    }
    .flex-box {
        justify-content: space-around;
    }
    .art-flex {
        display: flex;
        justify-self: left;
        width: 25%;
    }
    header {
        padding-bottom: 2rem;
        padding-top: 2rem;
        padding-left: 0;
    }
    .nav-bar {
        margin-right: 5rem;
    }
    .nav-bar a {
        margin-left: 5.5rem;
    }
    .flex-header-web {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        margin-left: 2rem;
        margin-right: 2rem;
    }
}