svg {
    width: 720px !important;
}

/* Here you can change the size of the animation. Change the parameter height. */
.anim-icon {
    width: 100%;
    height: 35vmax; /* size is relative to screen size */
    border: none;
    margin: 0 auto;
    text-align: center;
}

.anim-icon:focus {
    background: #fff !important;
    outline: none !important;
}

/* Here you can change the size for mobile screens */
@media (max-width: 1080px) {
    .anim-icon {
        height: 45vmax; /* size is relative to screen size */
    }
}

/* Tablet */

@media (max-width: 799px) {
    .anim-icon {
        height: 50vmax; /* size is relative to screen size */
    }
}


/* Mobile */

@media (max-width: 520px) {
    .anim-icon {
        margin: 1rem auto;
        margin-top: 2.5rem;
        height: 40vmax; /* size is relative to screen size */
    }
}