.activities-box
{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.activities-box a {
    text-decoration: none;
}

.activities-box img {
    max-height: 100%;
}

.activity {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid var(--box--border);
    border-radius: var(--box--radius);
    background-color: var(--box--background);
    box-shadow: var(--large--shadow);
    display: flex;
    justify-content: center;
    margin: 5px;
    transition: background-color 1s , box-shadow 1s;
    cursor: pointer;
}

.star {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../pictures/icons/circle.png");
}

.days {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 7px;
}

.activity:hover {
    background-color:  var(--hover--selected);
    box-shadow: var(--small--shadow);
}

.activity-image {
    box-sizing: border-box;
    height: 100%;
    padding: 5%;
}

.activity-text-box {
    width: 100%;
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: center;
}

.activity-text {
    background-color: var(--box--background);
    color: var(--font--activity--color);
}

@media screen and (min-width: 780px) {
    .activity {
        width: 150px;
        height: 150px;
    }
    .activity-text {
        font-weight: 700;
    }
    
}
