:root {
    --c-primary: #552c84;
    --c-primary-light: #6D51D6;
    --c-accent: #D9FF22;
    --c-dark-teal: #04262A;
    --c-text-dark: #000000;
    --c-text-light: #FFFFFF;
    --c-bg: #FFFFFF;
	--s-medium: 0 2px 10px rgba(0,0,0,0.05);
	--small: 8px;
	--medium: 16px;
}

* {
    box-sizing: border-box;
}

html {
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	html {
		font-size: 12px;
	}
	:root {
		--s-small: 4px;
		--s-medium: 8px;
	}
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--c-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--c-text-dark);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background-color: var(--c-bg);
    box-shadow: var(--s-m);
}

hr {
	width: 100%;
	height: 2px;
	background: #000;
}

b {
	margin: 0px;
}

header a img {
    height: 40px;
    width: auto;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: var(--c-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: var(--c-primary-light);
}

.btn-header {
    text-align: right;
}

.btn-header a {
    text-decoration: none;
    padding: 10px 24px;
    background-color: var(--c-primary-light);
    color: var(--c-text-light);
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-header a:hover {
    opacity: 0.8;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 30px 0;
    background-color: #100C22;
}

footer nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    gap: 40px;
}

footer nav ul li a {
    text-decoration: none;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

footer nav ul li a:hover {
    color: var(--c-text-light);
}

.bg-p p {
    margin: 0;
    color: var(--c-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.bg-p a {
    color: var(--c-accent);
    text-decoration: none;
}

.graph {
	display: flex;
	flex-direction: row;
	align-items: end;
	width: 100%;
	height: 100%;
	position: relative;
}
