.download-button{
    width: min-content;
    height: min-content;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    align-self: center;
    border-radius: 0.25rem;
    background: var(--download-color);
    box-shadow: var(--box-shadow);
}

.download-button:hover{
    background: var(--download-hover-color);
    transition: background-color .1s linear 0s;
}

.download-button-text{
    margin: 0.5rem 0rem 0.5rem 0.5rem; /*TOP RIGHT BOTTOM LEFT*/
    color: rgb(255, 255, 255);
    font-size: var(--download-button-font-size);
    font-family: var(--font-family-regular);
    font-variation-settings: var(--font-variation-regular);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.download-svg{
    width: 2.6rem;
    height: auto;
    margin: 0rem 0.25rem 0rem 0.25rem; /*TOP RIGHT BOTTOM LEFT*/
}