/* Variables.css | Jun 13, 2026 @12:34:49 AM  */

:root {

/* Colours */

--color-primary: #2473a7; /* Blue */
--color-secondary: #bc3867; /* Pink */
}/* Typography.css | Jun 13, 2026 @12:04:53 AM  *//* General.css | Jun 13, 2026 @12:51:47 AM  */

body {
.gradient-background {
position: absolute;
width: 100vw;
height: 100vh;
overflow: hidden;

&::before {
position: absolute;
top: 50%;
left: 50%;
translate: -50% -50%;
width: 200vw;
height: 200vh;
background: linear-gradient(-45deg, var(--color-primary), #e73c7e, #23a6d5, var(--color-secondary));
background-size: 400% 400%;
animation: moveGradient 2s ease infinite;
will-change: transform;
z-index: 0;
}
}
}

@keyframes moveGradient {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}/* Modules-Widgets.css | Jun 13, 2026 @12:05:15 AM  */