body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.containerApify {
    position: fixed;
    bottom: 100px;
    right: 30px;
}

.list {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.list li {
    background-color: rgb(252, 182, 80);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    margin-top: 10px;
    box-shadow: rgb(0 0 0 / 0.2) 0px 3px 5px -2px, rgba(0 0 0 / 0.14) 0px 1px 4px 2px, rgb(0 0 0 / 0.12) 0px 1px 4px 1px;
}

.button {
    background-color: rgb(252, 182, 80);
    color: #000000;
    border: none;
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 0.2) 0px 3px 5px -2px, rgba(0 0 0 / 0.14) 0px 1px 4px 2px, rgb(0 0 0 / 0.12) 0px 1px 4px 1px;
}

.button:hover {
    background-color: rgb(176, 127, 56);
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}