/* VARIABLES AND RESET */
:root {
    --primary: #40E0D0;
    /*we are using soco logos colors*/
    --secondary: #df41a2;
    --accent: #008B8B;
    --dark: #0a0a0a;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/*BACKGROUND ELEMENTS */
.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(45deg, #13151a, #1a1a1a);
    overflow: hidden;
}

.background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            rgba(64, 224, 208, 0.05) 0%,
            rgba(32, 178, 170, 0.05) 10%,
            transparent 10%,
            transparent 50%);
    animation: gradient 30s linear infinite;
}
