/*
   Title: Neo Install
   Author: QBIT
   Date: 03/09/2025

   File path: ../../../../uploads/
*/

/* Root styles */
:root {
    --purple: #7c3aed;
    --violet: #a855f7;
    --pink: #ec4899;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
}

body {
    min-height: 100dvh;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 45%, var(--pink) 100%);
    background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 3.0rem;
    font-family: 'Poppins', sans-serif; 
    color: #fff;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

 a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

@media (max-width: 48rem) { 

    /* Global styles */
}