img {
    min-width: 200px;
    max-width: 200px;
    height: auto;
    width: 15%;
    display: block;
    margin: 0 auto;
    margin-bottom: 5%;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.text-break.title-text-important {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #27ae60;
    transition: transform 0.3s ease;
}

.text-break.title-text-important:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.time {
    display: flex;
    justify-content: center; 
    margin: 0 auto; 
    margin-top: 5%;
    background: rgba(39, 174, 96, 0.2);
    border-radius: 12px;
    padding: 2% 0;
    transition: background 0.3s ease;
}

.time:hover {
    background: rgba(39, 174, 96, 0.4);
    border-radius: 12px;
    padding: 2% 0;
    transition: background 0.3s ease;
}

.time div {
    flex: 1 1 25%;
    font-size: 120%;
    text-align: center; 
}
.time-number {
    font-size: 200%;
    font-weight: 700;
}
.meta {
    font-weight: 600;
}
.title-text {
    text-align: center;
}
.container-div {
    margin: 0 10%;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: rgb(39, 174, 174);
}

i {
    color: #000;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

i:hover {
    color: #219150;
    transform: scale(1.15);
}