@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    display: grid;
    grid-template-areas:
        "header header header"
        "nav section aside"
        "footer footer footer";
    grid-template-rows: 100px 1fr 50px;
    grid-template-columns: 5% 1fr 5%;
    grid-gap: 5px;
    width: 100%;
    min-height: 100vh;
}

nav,
section,
aside,
footer {
    padding: 5px;
}

header {
    /* background: #707070; */
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/lastoo_w/vista_docente/recurso/header4.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-area: header;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    padding: 0 20px;
    height: 100px;
}



section {
    /* background: #ABABAB; */
    grid-area: section;

    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.table{
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
}

.table-header{
    background-color: #7463FF;
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;

    border-radius: 10px 10px 0 0;
}

.table-row, .table-data{
    width: 100%;
}

.row{
    width: 100%;
    display: grid;
    grid-template: "nombre punteo" 50px / 1fr 110px;

}

.table-data .data-row:nth-child(odd){
    background-color: #2e89ff46;
    transition: .2s ease all;
}

.table-data .data-row:nth-child(odd):hover{
    background-color: #2e89ff33;
}

.table-data .data-row:nth-child(even){
    transition: .2s ease all;
}

.table-data .data-row:nth-child(even):hover{
    background-color: #2e89ff1a;
}

.table-data .data-row:nth-child(:last-child){
    border-radius: 0 0 10px 10px;
}

.data-row{
    
    font-size: 18px;
    font-weight: 400;
}

.data-row .p-column{
    letter-spacing: 2px;
}

.n-column{
    display: flex;
    align-items: center;

    padding: 0 10px;
}

.p-column{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;

    border-left: 1px solid #2e89ff63;

}

.table-titulo{
    margin: 20px 0;
    font-size: 38px;
    font-weight: 200;
    padding: 7px 20px;

    border-bottom: 2px solid #7463FF;
}

footer {
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/lastoo_w/vista_docente/recurso/header4.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-area: footer;
}

