/* General Page Setup */
body {
    margin: 0;
    padding: 0;
background: #e6ffd4;
background: linear-gradient(180deg, rgba(230, 255, 212, 1) 0%, rgba(171, 255, 97, 1) 100%);
    font-family: Frutiger, MS Gothic, Arial, sans-serif;
    color: #003322;
}

/* 4:3 Container */
.container {
    width: 800px;
    height: 900px;
    margin: 20px auto;
    border: 3px outset #0ba100;
    background: #e7ffc9;
    box-shadow: 0 0 15px #165900;
}

/* Header */
.header {
background: #e6ffd4;
background: linear-gradient(180deg,rgba(230, 255, 212, 1) 0%, rgba(171, 255, 97, 1) 100%);
    border-bottom: 2px outset #0ba100;
    padding: 10px;
    text-align: center;
}

.header h1 {
    margin: 5px 0;
    font-size: 28px;
    text-shadow: 1px 1px #ffffff;
}

.subtitle {
    font-size: 12px;
    color: #006644;
}

/* Back Link */
.back-link {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-bottom: 5px;
    color: #004422;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Links Box */
.links-box {
    padding: 15px;
}

/* Individual Link Items */
.link-item {
 background: #e6ffd4;
background: linear-gradient(180deg,rgba(230, 255, 212, 1) 0%, rgba(171, 255, 97, 1) 100%);
    border: 1px outset #0ba100;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 2px 2px 5px #165900;
}

.link-item a {
    font-size: 16px;
    font-weight: bold;
    color: #006644;
    text-decoration: none;
}

.link-item a:hover {
    text-decoration: underline;
    color: #1caa00;
}

.link-item p {
    margin: 5px 0 0 0;
    font-size: 12px;
}

/* Footer */
.footer {
    background: #9ed18e;
    border: 2px outset #0ba100;
    text-align: center;
    padding: 5px;
    font-size: 11px;
}