/* CSS Reset */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --font-color: #333;
    --background-color:rgb(220, 168, 233);
    --aro-brand-lavender: rgb(220, 168, 233);
    --aro-brand-green: rgb(9, 109, 39);
    --aro-brand-lightblue: #0068f1;
    --aro-brand-purple: #2e1c8c;
    --aro-brand-gold: #bf9009;
    --blue-Ilike:#4a7bc8;
    --possible-purple: #cd12e2;
}
*,
*::before,
*::after  {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Remove default margin and padding */
body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

article, section {
   all: unset;
}


/* Global Styles */

body {
    font-size: 16px;
    color: var(--aro-brand-purple);
    background-color: var(--background-color);
}


/*Styling*/