body {
    margin: 0;
    overflow: hidden;
}

.floating-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 30px;
    border-radius: 15px;
    background-color: red;
    color: rgb(14, 223, 90);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.floating-button:hover {
    transform: scale(1.1);
}