

.downloader {
    background: url('./download.svg');
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border-width: 1px;
    border-style: dashed;
    cursor: pointer;
    background-position: center;
    outline: none;
    background-size: 100% 100%;
    transition: background-size ease-in-out 0.2s;

    &:hover {
        background-size: 120% 120%;
    }
}