@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

#actividades{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px 30px;
    width: 80%;
    align-items: center;
}

.actividad{ 
    display: grid;
    padding: 10px;
    cursor: pointer;
    transition-duration: 190ms;
    transition-property: scale;
    
    &:hover{
        scale: 1.05;
    }
}


.actividad img{
    border-radius: 8px;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.actividad a{
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    padding-top: 10px;
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid #000;
    gap: 5px;
    &:hover{
        border-bottom: 1px solid #ff0000;
        color: #ff0000;
        
        &:small{
            color: #ff0000;
        }
    }
}

.actividad h3{
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding-top: 5px;
}

.actividad small{
    color: #444444;
    text-align: center;
    margin-bottom: 10px;
}

#info-actividades{
    display: flex;
    flex-direction: row;
    padding: 129px 30px 0 50px;
    padding-bottom: 0;
}

.actividad-img{
    width: 50%;
    border-radius: 6px;
}

.actividad-img img{
    width: 100%;
    border-radius: 4px;
    box-shadow: -30px -30px 0px 2px #5555ff;
}

.actividad-info{
    width: 50%;
    margin: 50px;
    margin-left: 100px;
}

.actividad-info h1{
    font-size: 40px;
    color: #2A2A8F;
}

@media (max-width:1093px){
    #info-actividades{
        flex-direction: column;
        align-items: center;
        padding: 0;
        padding-top: 75px;
    }

    .actividad-img {
        padding-top: 0;
        width: 100%;
        border-radius: 6px;
        box-shadow: none;
    }
    
    .actividad-img img {
        padding-top: 0;
        width: 100%;
        border-radius: 4px;
        box-shadow: none;
    }

    .actividad-info {
        width: 97%;
        margin: 0;
        text-align: justify;
        font-size: 18px;
    }

    .actividad-info h1{
        margin: 5%;
        font-size: 30px;
    }

}