/* Common elements found in the "custom.css" */
/* .custom-btn {
    background-color: #0086b3;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-btn:hover {
    background-color: #004d80;
}

.custom-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.custom-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} */