@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-color: #fff;
}


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

header {
    grid-area: header;
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/nuevo_lastoo/vistas/elrecurso/header1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 0 50px;

    display: flex;
    justify-content: start;
    align-items: center;
}

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

.logo img {
    width: 100%;
}

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

main {
    grid-area: main;
    padding: 15px 0;
}

main h1 {
    text-align: center;
    margin-bottom: 15px;
}

.container_actividades {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px 50px;
}

.actividad {
    min-width: 250px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    box-shadow: 0px 4px 15px -3px rgba(79, 79, 79, 0.371);
    transition: all 0.2s;
}

.actividad:hover {
    transform: scale(1.08);
}

.actividad_title {
    font-size: 25px;
    font-weight: bolder;
    background: linear-gradient(16deg, rgb(95, 177, 255) 0%, rgb(11, 101, 255) 100%);

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.2s;
}

.actividad:hover .actividad_title {
    text-shadow: -1px 1px 10px rgba(50, 125, 255, 0.46);
}

.actividad_fecha {
    font-size: 16px;
    color: #545454;
}

.actividad_btn {
    border: none;
    padding: 8px 13px;
    font-size: 15px;
    border-radius: 8px;
    color: #fff;
    font-weight: bolder;
    background: rgb(255,119,0);
    background: linear-gradient(16deg, rgba(79, 170, 255, 0.871) 0%, rgba(41, 120, 255, 0.896) 100%);
    box-shadow: 0px 4px 15px -10px #000;
    cursor: pointer;
    transition: all 0.2s;
}

.actividad_btn:hover {
    transform: scale(1.06);
}

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

footer {
    grid-area: footer;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
    background-image: url(.https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/nuevo_lastoo/vistas/elrecurso/header1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;


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