<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: rgb(74, 177, 224);
    --main-color-light: rgb(136, 193, 247);
    --main-color-transparent: rgba(74, 177, 224, 0.5);
    --secondary-color: orange;
    --main-text-color: midnightblue;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    color: var(--main-text-color);
}

.box {
    background-color: var(--main-color-light);
    border: 1px solid var(--main-text-color);
    border-bottom-width: 2px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

div.error {
    padding: 20px;
    text-align: center;
}

h1.section-title {
    color: var(--main-text-color);
    padding: 5px;
    font-size: 30px;
    word-spacing: 1px;
    text-transform: capitalize;
}

h1.section-title::after {
    content: " &gt;";
    color: var(--main-color);
    text-transform: none;
}

h1.section-title::before{
    content: "&lt; ";
    color: var(--main-color);
}

.container {
    display: grid;
    place-items: center;
    flex: 1;
    height: 80vh;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 0px;
}

.call-to-action {
    color: white;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: var(--main-color);
    border: solid 2px var(--main-text-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

a.call-to-action:hover {
    background-color: var(--main-color-light);
    color: var(--main-text-color);
}

button.call-to-action:hover {
    background-color: var(--main-color-light);
    color: var(--main-text-color);
    cursor: pointer;  
}

button.call-to-action:hover:disabled {
    background-color: var(--main-text-color);
    color: white;
    cursor: not-allowed;
}

a.call-to-action::after {
    content: " &gt;";
    font-size: 20px;
    color: var(--main-text-color);
}

a.call-to-action:hover::after {
    font-size: 20px;
    color: white;
}

.call-to-action:disabled {
    background-color: var(--main-text-color);
    color: white;
    cursor: not-allowed;
}

.main-nav {
    display: inline-block;
    text-align: center;
    font-size: 18px;
}

.main-nav a {
    text-decoration: none;
    font-weight: bold;
    color: var(--main-text-color);
}

.main-nav a:hover {
    color: var(--main-color);
    text-decoration:underline;
    text-decoration-color: var(--main-color);
}

.main-nav ul {
    list-style-type: none;
}

.main-nav ul li {
    display: inline-block;
    padding: 10px;
    padding-left: 30px;
    vertical-align: middle;
}

.main-banner {
    background-image: url("imgs/header_main.jpeg");
    width: 1040px;
    height: 347px;
    display: grid;
    place-items: center;
    border: 1px solid var(--main-text-color);
    border-radius: 8px;
}

.main-banner-tagline {
    background: var(--main-color-transparent);
    color: white;
    font-size: 25px;
    padding: 10px;
    font-weight: bold;
    border-radius: 8px;
}

.vision {
    display: grid;
    place-items: center;
    font-weight: bold;
}


.vision-line-2 {
    color: var(--secondary-color);
}

.goals {
    background-position: top;
    background-color: black;
    color: white;
    padding: 0px;
    border: 1px solid gray;
}

.goals img {
    width: 100%;
    height: auto;
}

.goals .terminal-content {
    padding: 10px;
}

.goals-line-1 {
    font-weight: bold;
}

.goals span.spark, .goals span.equip, .goals span.foster {
    font-weight: bold;
}

.goals span.spark {
    color: red;
}

.goals span.equip {
    color: yellow;
}

.goals span.foster {
    color: greenyellow;
}

.goals span.brackets {
    font-weight: bold;
}

.how-do-we-make-it-happen ul {
    list-style-type: none;
}

div.how-do-we-make-it-happen &gt; ul &gt; li {
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 10px;
}

.how-do-we-make-it-happen li ul {
    list-style-type: none;
}

.how-do-we-make-it-happen li ul li {
    display: inline-block;
}

.how-do-we-make-it-happen li ul li.how-do-title {
    font-weight: bold;
}

.the-bootcamp {
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.our-work-in-action {
    display: inline-block;
}

.our-work-in-action img {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.our-work-in-action .our-work-in-action-line-1 {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    color: var(--main-text-color);
    background-color: var(--main-color-light);
    border-radius: 8px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.our-impact-to-date ul {
    list-style-type: none;
}

.our-impact-to-date ul li {
    display: inline-block;
    text-align: center;
    padding: 20px;
    background-color: var(--main-color-light);
    border-radius: 8px;
    border: 1px solid var(--main-text-color);
}

.our-impact-to-date .highlight {
    font-weight: bold;
}

.get-involved {
    text-align: center;
}

.footer {
    margin-top: 10px;
    position: relative;
    text-align: center;
    background-color: var(--main-color-light);
    padding: 10px;
}

.footer ul {
    list-style-type: none;
}

.footer ul li {
    display: inline-block;
}

/* Our Team Section */

div.container div.person-boxes {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.person-boxes .person {
    width: 456px;
}

.person-boxes .person img {
    width: 456px;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid var(--main-text-color);
}

.person-boxes .person .name {
    font-weight: bold;
    color: var(--main-text-color);
    font-size: 20px;
}

.person-boxes .person .content {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Contact Form */

.contact-form div.name-email {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
}

.contact-form {
    display: grid;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
}

.contact-form div {
    margin-bottom: 20px;
}

.contact-form div.form-btns {
    text-align: center;
}

.form-btns input[type="submit"] {
    background-color: var(--main-text-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 95%;
    padding: 10px;
    border: none;
    border: 1px solid var(--main-text-color);
    border-radius: 4px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--main-color);
}

.contact-form textarea {
    height: 100px;
}

.contact-info {
    text-align: center;
}

.contact-success {
    display: grid;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Get Involved */

.get-involved-intro {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.get-involved-intro h1 {
    text-align: center;
    width: 100%;
}

div.get-involved-boxes {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto;
    padding: 20px;
}

.get-involved-boxes article {
    text-align: left;
    width: 456px;
    display: grid;
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    color: var(--main-text-color);
}

.get-involved-boxes article.icon {
    display: grid;
    place-items: center;
}

.get-involved-boxes article img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.get-involved-boxes article h3 {
    color: var(--main-text-color);
}

/* Donate */

.donate-info {
    text-align: center;
}

.bank-details {
    padding: 20px;
}

.bank-details span {
    font-weight: bold;
}

.amount-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.donate-form h3 {
    padding-top: 0px;
    margin-top: 0px;
}
.amount-options label {
    display: block;
    font-weight: bold;
    font-size: 20px;
}

.donate-form input[type="radio"] {
    width: 20px;
    height: 20px;
}

#other_amount_container {
    display: none;
}

#loader {
    display: none;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.donate-success {
    display: grid;
    text-align: center;
}

.donate-success img {
    border-radius: 8px;
    height: 300px;
}

.donate-success-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.donate-success-text {
    padding: 20px;
    text-align: center;
}

.under-construction {
    display: grid;
    place-items: center;
    padding: 20px;
}
</pre></body></html>