:root {
    --primary: #FF2063;
    --secondary: #ff8c00;
    --primary-rgb: 255, 32, 99;
    --secondary-rgb:255, 140, 0;
}

/* COLOR 1 */

.gradient-text-color-1 {
    background: linear-gradient(90deg, #FF0080, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg-color-1 {
    background: radial-gradient(circle at center, rgba(255, 100, 0, 0.4), transparent 70%);
}