body {
    padding: 0;
    margin: 0;
    background: linear-gradient(to top, #b0cada 2%, white );

    /* background: radial-gradient(circle at top left, #161231, #161231); */
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* padding: 4rem; */
}

.floating-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.floating-button i {
    font-size: 24px;
    line-height: 60px;
}

.floating-button:hover {
    background-color: #128c7e;
}