/* ==========================================
   Kids Hope Fund Website
   Version 2.0
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #222;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.center {
text-align: center;
}

section {
    padding: 10px 0;
}

h1,
h2,
h3 {
    color: #0a2d62;
    margin-bottom: 20px;
}

p {
    margin-bottom: 18px;
}

/* Buttons */

.btn {
    display: inline-block;
    background: #d62828;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: -20px;
    transition: .3s;
}

.btn:hover {
    background: #b51d1d;
}

/* ==========================================
   IMAGE SIZE IMPROVEMENTS
   ========================================== */

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
}
.card img.family-photo {
    object-position:
center 40%;
}
.card img.shirts-photo {
    object-position:
center 30%;
}
.video img {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 25px;
    border-radius: 10px;
}

footer {
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
    padding: 15px 0;
}
footer p {
    margin: 4px 0;
}