@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: grid;
    grid-template:
        "header header header" 75px
        "aside main side" 1fr
        "footer footer footer" 35px / 12% 1fr 12%;
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/sistema_super_salones/super_salones/elrecurso/bg_5_mejora.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*--------------------------HEADER--------------------------------*/

header {
    grid-area: header;
    background-color: #003077;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logolargo {
    width: 100%;
}

.logoblanco {
    display: none;
}

.header_title {
    color: #fff;
    font-weight: bolder;
    text-decoration: underline;
    font-size: 30px;
}

/*---------------------------MAIN--------------------------------*/

main {
    grid-area: main;
    padding: 20px 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

.container_edifi {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    background-color: rgb(241, 241, 241);
    padding: 20px;
    border-radius: 8px;
}

.title {
    font-size: 25px;
    font-weight: bolder;
    text-align: center;
}

table {
    width: 100%;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
}

th {
    padding: 10px 5px;
    border-radius: 8px;
    background-color: rgb(218, 218, 218);
}

td {
    text-align: center;
    padding: 10px ;
    border-bottom: 1px solid grey;
}

/*--------------------------FOOTER--------------------------------*/

footer {
    grid-area: footer;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    background-color: #003077;


    p {
        span {
            color: #3dd2ff;
        }
    }
}

/*-----------------------MEDIAS QUERY----------------------------*/

@media screen and (max-width: 700px) {
    body {
        font-family: 'Poppins', sans-serif;
        min-height: 100vh;
        display: grid;
        grid-template:
            "header header header" 75px
            "aside main side" 1fr
            "footer footer footer" 35px / 3% 1fr 3%;
        background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/sistema_super_salones/super_salones/elrecurso/bg_5_mejora.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    header {
        padding: 0 15px;
    }

    .logo {
        width: 60px;
    }

    .logolargo {
        display: none;
    }

    .logoblanco {
        width: 100%;
        display: block;
    }
}