@import 'classes.css';
@import 'ids.css';
@import 'responsive.css';

:root {
    /* Primary Colors */
    --red: #da0e06;
    /* Accent Colors */
    --red-rocks: #a80619;
    --yellow: #fec107;
    --light-blue: #aedde1;
    --blue: #368c9f;
    --orange: #ee5000;
    --light-orange: #ff9238;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Classes */
/* Montserrat - Headings and Titles */
/* <weight>: Use a value from 100 to 900
<uniquifier>: Use a unique and descriptive class name */

.montserrat-normal {
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Source Sans 3 - Body */
/* <weight>: Use a value from 200 to 900
<uniquifier>: Use a unique and descriptive class name */

.source-sans-3-normal {
    font-family: 'Source Sans 3', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    height: 100vh;
}

body {
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.5;
    font-size: large;
    text-align: justify;
}

h1 {
    color: var(--red);
}

h2 {
    color: var(--red);
}

header {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px 35px;
    align-items: center;
    text-align: center;
    width: 100%;
}

header h1 {
    font-weight: bold;
    font-size: 3rem;
    color: var(--red);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

header a {
    text-decoration: none;
    color: var(--red);
}

header nav {
    margin: 7px 0;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

header nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    width: 100%;
}

header nav ul li {
    flex: 1;
}

header nav ul li a {
    padding: 10px 15px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: underline;
    text-decoration-color: var(--light-blue);
    text-decoration-thickness: 3px;
}

header nav ul li a:hover {
    color: var(--orange);
    text-decoration-color: var(--blue);
}

p {
    margin: 0.5rem 0rem;
}

div ul {
    margin: 0.5rem 0rem;
    width: 75%;
}

section {
    padding: 1rem 0rem;
}

a {
    color: var(--red);
    text-decoration-color: var(--blue);
    text-decoration-thickness: 1.5px;
    transition: color 1s, text-decoration 1s;
}

a:hover {
    color: var(--orange);
    text-decoration-color: var(--light-blue);
}
