h1 , h5 {
    color: rgb(234, 145, 145);
    font-size: 20px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    text-shadow: 5px 5px 5px rgba(97, 92, 92, 0.229);
    background-color: yellow;
    padding: 20px;
    margin: 10px;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.083);
    display: inline-block;
    text-transform: capitalize;
    cursor: pointer;    
    transition: all 0.5s ease-in-out;
    animation: pulse 2s infinite;
    width: 150px;
    height: 100px;  
}

h1:hover , h5:hover {
    transform: scale(1.1);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}