/* Colors */
:root {
    --blackberry: #48182F;
    --blackberry-light: #6d2747;
    --blackberry-dark: #321220;
    --white: #FFFFFF;
}

/* Removing default styling */
ul, ol, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;   /* Removes underlining */
    color: inherit;          /* Inherit color parent element */
}
a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}