/* Define color variables */
:root {
    --primary_color: #0F7F7B;
    /*#1B5E20; */
    /* Leaf Green */
    --secondary_color: #FFFFFF;
    /* #34A853; */
    /* Darker Green */
    --text_color: #333;
    /* Dark Text */
    --light_text_color: #555;
    /* Lighter Text */
    --footer_header_text_color: white;
    /* Rich black */
    --base_font_size: 1.5rem;
    /* Base font size for rem calculations */
}

/* Fix problem with horizontal scrolling when screen width is small */
*,
*::before,
*::after {
    box-sizing: border-box;
}


/* General Page Styling */
@font-face {
    font-family: 'customFont';
    src: url('../fonts/roxborough-cf-regular.otf');
}

body {
    font-family: 'customFont', sans-serif; /* 'Times New Roman', serif; */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text_color);
}

.make_primary {
    color: var(--primary_color);
    font-weight: bold;
}

.make_secondary {
    color: var(--secondary_color);
    font-weight: bold;
}

.make_white {
    color: white;
}

	h1,
section h1,
section * h1,
article h1,
article * h1,
aside h1,
aside * h1,
nav h1,
nav * h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary_color);
}

/* Reduce spacing between paragraph lines */
p {
    color: #333;
    line-height: 1.5;
    /* Slightly increased line height for readability */
}

.main_content_container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    box-shadow: 0rem 4rem 10rem rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 60rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
}

.button-primary {
    background-color: var(--primary_color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.button-primary:hover {
    background-color: var(--secondary_color);
}

/* Links */
a {
    color: var(--primary_color);
    text-decoration: none;
}