* {
    margin: 0;
    padding: 0;
    font-family: "Ovo";
}

.header {
    min-height: 25vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position:relative;
}
nav{
    display: flex;
    padding: 1% 5%;
    justify-content: space-between;
    background-color: #111;
    
}
.nav-links{
    flex: 1;
    text-align: center;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 12px 20px;
    position:relative;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing:2.5px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #00daf3;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa-solid{
    display: none;
}
.form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25%;
}
.Gdoc{
    height: 150vh;
    width: 75%;
    border-color: #111;
    border-width: 0.5px;
}

@media(max-width: 700px){
    .header {
        min-height: 25vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        position:relative;
    }
}
@media(max-width: 530px){
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #A64153;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -100%;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        color: white;
        margin: 10px;
        font-size: 26px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 15px;
    }
}
@media(max-width: 600px){
    .text-box h1{
        font-size: 30px;
    }
}

/* Learn More*/
.learn-double{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-bottom: 100px;
}
hr{
    border: none;
    width: 95%;
    height: 10px;
    background-color: black;
    border-radius: 10px;
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
}
.wrapper{
    margin: 150px auto;
    width: 80%;
}
#learn-img{
    width: 50%;
    float: left;
    margin-right: 50px;
    border-radius: 3%;
}

.learn-text h1{
    font-size: 60px;
    font-weight: 600;
}
.learn-text span{
    color: #04C4D9;
    text-align: center;
}
.learn-text p{  
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}
.learn-text a{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: black;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 20%;
    transition: all 1s ease;
    
}
.learn-text a:hover{
    border: 1px solid #A64153;
    background: #A64153;
    transform: translateY(-10px);
    transition: 1s;
}
.involve-double{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin-bottom: 20%;
}
.involve-row{
    margin: 150px auto;               
    width: 80%;               
    display: flex;               
    justify-content: space-between;  
    gap: 5%;          
}

#donate-img{
    width: 75%;
    margin: 10px;
    margin-left: 12.5%;
    border-radius: 3%;
}
.involve-col h1{
    font-size: 30px;
    font-weight: 300;
    text-align: center;
}
.involve-col span{
    color: #04C4D9;
    text-align: center;
}
.involve-col #volunteer-span{
    color: #A64153;
    text-align: center;
}
.involve-col p{  
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}
.involve-col a{
    display: inline-block;
    text-decoration: none;
    color: #00daf3;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: black;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 35%;
    transition: all 0.5s ease;
    text-transform: uppercase;
    font-family: "Ovo";
    
}
.involve-col a:hover{
    border: 1px solid #A64153;
    background: #A64153;
    transform: translateY(-10px);
    transition: 0.5s;
}
/*_____________________*/
html{
    height: 100%;
    overflow-x: hidden;
}
body{
    position: relative;
    margin: 0;
    min-height: 100%;
    padding-bottom: 5rem;
    
}
/*- FOOTER-*/

footer{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, #A64153, #04C4D9); */
    background: black;
    padding: 50px 0 30px;
    font-size: 14px;
    
}
.socialIcons{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.socialIcons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.socialIcons a i{
    font-size: 20px;
    color: black;
}
.socialIcons a:hover{
    background-color: #111;
    transform: translateY(-10px);
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
    transition: all .5s ease;
    
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.5em;
    opacity: 0.5;
    transition: .5s;
    font-family: "Ovo", serif;
    
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerText{
    background: black;
    text-align: center;
    padding: 20px;
}
.footerText p{
    color: white;
    font-family: "Ovo", serif;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin: 0 5px;
    font-family: "Ovo", serif;
}
.footerText p a{
    color: #0099aa;
    font-family: "Ovo", serif;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0 5px;
    transition: .5s ease;
}
.footerText p a:hover{
    color: #00daf3;

}
