@import url('https://fonts.googleapis.com/css2?family=Barrio&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #f5f0e8;

}

#main-title {
    font-family: "Barrio";
    color: #222123;

}

#activity-box{
    margin: 20px;
}

#generate-btn{
    border-radius: 40px;
    padding: 18px 25px;
    background-color: #7a9e7e;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    font-family: "Nunito";

}

#generate-btn:hover {
    background-color: #6a8e6e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    }


.activity-card{
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    font-family: "Nunito";
    color: #222123;
    background-color: #ffffff;

}


.activity-image{
    width: 100%;
    border-radius: 10px;
}


.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 12px 0;
}


.category-tag {
    background-color: #e8f0e8;
    color: #4a7a4e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}


.free-badge {
    background-color: #7a9e7e;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

