.tipblock .text-area {
    display: flex;
    align-items: center;
    background-color: black;
    padding: 20px;
}

.tipblock:hover .text-area {
    transform: scale(1.005);
}

.tipblock .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background-color: white;
}

.tipblock .circle span {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.tipblock .text-content {
    display: flex;
    flex-direction: column;
}

.tipblock strong {
    font-size: 24px;
}

.tipblock p {
    margin: 0;
    padding-bottom: 10px;
}

.tipblock a {
    color: white;
    text-decoration: none;
}

.tipblock a:hover {
    text-decoration: underline;
}

.tipblock span {
    color: white;
    font-weight: bold;
    font-size: 20px;
}