.semkotala {
    margin-top: 30px;
    background-color: #EDEEF3;
}

.talaicon {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: all 0.5s ease;
}

.belowtext {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 50px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 50px;
    gap: 20px;

}

.talabatta {
    display: grid;
    padding: 40px;
    gap: 10px;
    background-color: white;
    border-radius: 5px;


}

.talaicon1 {
    background-color: #D1F3ED;
    color: #47C5B0;
}

.talaicon2 {
    background-color: #D3D3F3;
    color: #564FFD;
}

.talaicon3 {
    background-color: #F3D6D6;
    color: #E34444;
}

.talabatta:hover .talaicon1 {
    background-color: #47C5B0;
    color: white;
}

.talabatta:hover .talaicon2 {
    background-color: #564FFD;
    color: white;
}

.talabatta:hover .talaicon3 {
    background-color: #E34444;
    color: white;
}

.mobilebhakowala {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    padding-left: 80px;
}

.numberwala {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #AAFFF1;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 15px;
    color: #00AF92;
}

.playbutton {
    font-size: 2rem;
    position: absolute;
    left: 380px;
    top: 250px;
    padding: 20px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00AF92;
    color: white;
    animation: glow 2s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 40px 0 #00AF92;
    }

    50% {
        box-shadow: 0 0 0 0 #00AF92;
    }

    100% {
        box-shadow: 0 0 40px 0 #00AF92;
    }
}

.hello {
    padding: 10px;
    color: #00AF92;
    border: none;
    transition: all 0.5s ease;
}

.hello:hover{
    color: blue;
}