:root {
    /* Interesting values for color_1: */
    /* --color_1: #4a5e6a; */
    /* --color_1: #7f9b1a; */
    /* --color_1: #121e6c; */
    /* --color_1: #ae2284; */
    --color_1: #6a7f1f;
    --color_2: #e8491d;
    --color_bg: #d1cebb;
    --color_text: #171d20;
    --color_footer: #35424a;
}

::selection {
    background: var(--color_1);
    color: var(--color_bg);
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.otf') format('opentype');
    font-weight: 400;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    padding: 0;
    background-color: var(--color_bg);
}

body h1 {
    font-weight: 600;
    font-size: 3em;
    color: var(--color_1); /* Change the color of the text */
    text-align: center;
    margin: 0% auto 1% auto;
}

body h2 {
    font-weight: 600;
    font-size: 3em;
    color: var(--color_1); /* Change the color of the text */
    text-align: center;
}

body p {
    color: var(--color_text)
}


header h1 {
    text-align: left;
    margin-left: 10%;
    margin-top: 3%;
    color: var(--color_1);
    font-weight: 600;
}

a:link {
  color: var(--color_1);
}

a:visited {
  color: var(--color_footer);
}

nav a:visited {
    color: var(--color_bg);
}

nav {
    margin: 20px 0;
}

nav a {
    background: var(--color_1);
    color: var(--color_bg);
    text-decoration: none;
    padding: 8px 10px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

header nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin-left: 10%;
    display: flex; /* Arrange items in a horizontal row */
    justify-content: left; /* Center the items */
    gap: 15px; /* Add spacing between items */
}


nav a:link {
    background: var(--color_1);
    color: var(--color_bg);
}

nav a:hover {
    background: var(--color_2);
    color: var(--color_bg);
}

footer {
    background: var(--color_footer);
    color: var(--color_bg);
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 0px;
    font-size: 0.9em; /* Increase the font size */
}

footer a {
    font-size: 1.0em; /* Increase the font size */
    padding: 10px 15px; /* Add padding for a larger clickable area */
    color: var(--color_bg); /* Ensure the text color is white */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Ensure proper spacing */
    transition: transform 0.3s ease; /* Add a smooth zoom effect on hover */
}

footer a:visited {
    color: var(--color_bg);
}

.attribution {
    font-size: 0.6em;
}

.back a:hover {
    background: var(--color_2);
    color: var(--color_bg);
}

.back a {
    background: var(--color_1); /* Default background color */
    color: var(--color_bg); /* Default text color */
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}