html {
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

header {
    background-color: #0e1733;
    height: 100%;
    padding: 0.5rem;
}
header h1 {
    color: #f98603;
    font-weight: 600;
    font-size: 3.5rem;
    font-family: Helvetica, sans-serif;
    margin: 0.39rem 0 0 0.39rem;
    padding-top: 10px;

}
header p {
    color: #f98603;
    font-weight: 600;
    font-size: 1.4rem;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 0.4rem 0.8rem;
}

.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #f98603;
}
#welcome {
    width: 40%;
    color: #0e1733;
}
#welcome h2 {
    font-family: Helvetica;
    font-size: 2rem;
    margin-bottom: 2%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}
#welcome p {
    font-size: 1.5rem;
    font-family: Baskervville, sans-serif;
    font-weight: 650;
    margin-top: 0;
}
#about {
    width: 50%;
    color: #0e1733;
}
#about h2 {
    font-family: Helvetica;
    font-size: 2rem;
    margin-bottom: 2%;
}
#about p {
    font-size: 1.5rem;
    font-family: Helvetoca, sans-serif;
    font-weight: 600;
    margin-top: 0;
}
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
    }
    #welcome, #about {
        width: 90%;
    }
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    justify-content: space-between;
    height: auto;
}
#space-photo {
    grid-column: 1 / 2;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 1rem;
    box-sizing: border-box;
    background-color: #0e1733;
}

#space-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#what-we-do {
    grid-column: 2 / 3;
    background-color: #0e1733;
    color: #f98603;
    
}
#what-we-do h2 {
    font-family: Helvetica;
    font-size: 2rem;
    margin: 2% 0 2% 2%;
}
#what-we-do p {
    font-family: BAskervville;
    font-weight: 500;
    margin-top: 0;
    margin-left: 2%;
    font-size: 1.5rem;
    max-width: 80%;
}
@media screen and (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    #what-we-do {
        padding-left: 2%;
    }

    #space-photo {
        height: 300px;
        padding: 0.5rem;
    }
}
.closer {
    color: #0e1733;
    background-color: #f98603;
    padding: 2%;
    display: grid;
}
#testimonial {
    width: 100%;
}
.closer h2 {
    margin-top: 0;
    font-family: Helvetica;
    font-size: 2.3rem;
    font-weight: 600;
}
.closer p {
    font-family: Baskervville;
    font-weight: 500;
    font-size: 1.6rem;
    width: 100%;
}
.donatelink {
    width: 20%;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 0 auto;
}

.donatelink p {
    font-family: Helvetica;
    background-color: #0e1733;
    color: #f98603;
    width: 100%;
    margin: 0;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1.7rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.donatelink p:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 768px) {
    .donatelink {
        width: 50%;
    }
    .donatelink p {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .donatelink {
        width: 80%;
        margin: 0 auto;
    }
    .donatelink p {
        width: 100%;
        margin: 0 auto;
    }
}
/* FOOTER */
footer {
    background-color: #0e1733;
    color: #f98603;
    padding: 2.1rem;
}

.contact h2 {
    margin: 0;
    font-family: Helvetica;
    font-size: 2.3rem;
    font-weight: 600;
}
.contact h3 {
    font-family: Helvetica;
    font-size: 1.5rem;
    font-weight: 600;
}
.contact p {
    font-family: Baskervville;
    font-weight: 500;
    font-size: 1.2rem;
    width: 100%;
}
.socials h3{
    font-family: Helvetica;
    font-size: 1.5rem;
}
.socials ul{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-direction: row; 
}
.socials li {
    transition: transform 0.4s ease 0.1s;
}
.socials li:hover {
    transform: scale(1.25);
}
.socials li a {
    text-decoration: none;
    color:#f98603;
}