/*
Theme Name: Jeremy Johnson Assignment 3B
Author: Jeremy Johnson
Description: Custom theme for Assignment 3B
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #222;
}

header {
    background: #2c5f2d;
    color: white;
    padding: 25px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header h1 a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

header h1 a:hover {
    color: #ffd700 !important;
    border-bottom: 2px solid #ffd700;
}

header p {
    margin-top: 8px;
    margin-bottom: 0;
    color: #ddd;
}

.container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.sidebar {
    width: 22%;
    background: #d9ead3;
    padding: 15px;
    border-radius: 8px;
    box-sizing: border-box;
}

.content {
    width: 78%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

footer {
    background: #2c5f2d;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #3e8e41;
    text-decoration: underline;
}

h1, h2, h3 {
    color: #2c5f2d;
}

header h1,
header h1 a {
    color: white !important;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
