*{
    margin: 0;
    padding: 0;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background-color: rgb(235, 235, 235);
}

.underline{
    background-color: white;
    width: 100px;
    height: 2px;
    margin-bottom: 1rem;
}

.whatsappIcon{
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 10;
}

.whatsappIcon img{
    width: 80px;
    height: 80px;
    animation: scaleanime 1s linear infinite alternate-reverse;
}

.whatsappIcon img:hover{
    animation-play-state: paused;
}
@keyframes scaleanime{
    0%{
        transform: scale(100%);
        -o-transform: scale(100%);
        -ms-transform: scale(100%);
        -moz-transform: scale(100%);
        -webkit-transform: scale(100%);

        transform:rotateZ(0deg);
    }

    100%{
        transform: scale(105%);
        -o-transform: scale(105%);
        -ms-transform: scale(105%);
        -moz-transform: scale(105%);
        -webkit-transform: scale(105%);

        transform:rotateZ(20deg);
    }
}

.underline{
    width: 100px;
    height: 2px;
    background-color: black;
}