﻿/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

@media (min-width: 768px) {
    .wrapper {
        display: grid;
        grid-template-columns: 2fr 2fr;
        gap: 0.5px;
        display: grid;
    }
}

@media (max-width: 480px) {
    .wrapper {
        display: grid;
        grid-template-columns: 2fr 2fr;
        gap: 0.5px;
        display: grid;
    }
}
/* Red color theme */
:root {
    --primary-red: #e60023;
    --secondary-red: #cc0020;
    --light-red: #ffcccc;
    --dark-gray: #4a4a4a;
    --light-gray: #f2f2f2;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    /*color: var(--primary-red);*/
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.75em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

h5 {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

h6 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

/* Paragraphs and Text */
p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1em;
}

a {
    color: var(--primary-red);
    text-decoration: none;
}

    a:hover {
        color: var(--secondary-red);
        text-decoration: underline;
    }

/* Buttons */
button, .btn {
    font-size: 1em;
    color: #fff;
    background-color: var(--primary-red);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover, .btn:hover {
        background-color: var(--secondary-red);
    }

/* Navigation */
nav {
    background-color: var(--primary-red);
    padding: 10px;
}

    nav a {
        color: #fff;
        padding: 10px 15px;
        text-decoration: none;
    }

        nav a:hover {
            background-color: var(--secondary-red);
        }

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

    footer a {
        /*color: var(--light-red);*/
    color: #fff;
    text-decoration: none;
}

        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
