@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    --ramadan-green: #0097a7;
    --ramadan-dark-green: #028a9a;
    --ramadan-gold: #D3AF37;
}

* {
    font-family: "Lexend", sans-serif;
    color: #231f20;
}

img {
    max-width: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
}

header {
    box-shadow: rgba(154, 161, 177, 0.1) 0px 5px 10px;
    width: 100%;
    background-color: #fff;
    position: fixed;
}

nav {
    display: flex;
    height: 120px;
    justify-content: space-between;
    align-items: center;
}

nav img {
    max-width: 240px;
}

main {
    padding-top: 110px;
}

h1 {
    font-size: 32px;
    margin: 0;
    margin-bottom: 2rem;
}

p {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    margin-bottom: 2rem;
}

strong {
    font-size: 18px;
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: 2rem;
}

.gray-section {
    background: linear-gradient(rgba(246, 246, 242, 1), rgba(246, 246, 242, 1));
}

.button {
    background-color: var(--ramadan-green);
    color: #fff;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 22px;
}

.button:hover {
    background-color: var(--ramadan-dark-green);
}

.two-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2.5rem;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-width: 50%;
}

#hero {
    background: url(../img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    background-position-y: center;
    background-position-x: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

#hero h1 {
    font-size: 46px;
}

/* Programs */
.program-tile {
    border: 4px solid #f6f6f2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-bottom: 1rem;
    min-height: 120px;
    padding: 1rem;
    box-sizing: border-box;
}

.program-tile:hover {
    border-color: var(--ramadan-green);
}

.program-tile a {
    text-decoration: none;
}

.program-tile a strong {
    font-size: 24px;
}

.program-tile a p {
    margin: 0;
}

/* Sponsor a child */
.list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

/* Earthquake */
#earthquake {
    background-image: url(../img/AdobeStock_74107816.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 100%;
}

#earthquake .container {
    background-color: #fff;
    padding: 2rem;
    position: relative;
    top: 200px;
}

/* Fundraiser */
#fundraiser {
    padding-top: 200px;
}

/* Crypto */
#crypto .container {
    padding: 2rem;
    border: 2px solid var(--ramadan-dark-green);
}


.crypto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.crypto img {
    max-width: 260px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.crypto strong {
    font-size: 22px;
}

#qr {
    background-color: var(--ramadan-green);
}

#qr h1,
#qr p {
    color: #fff;
}

footer {
    padding: 2rem ;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer img {
    max-width: 240px;
    margin-bottom: 1rem;
}