
body{
    line-height: 1.5;
    font-family: 'poppins',sans-serif ;
}

*{
    box-sizing: content-box;
    padding: 0%;
}
.grid-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows:0.2fr 3fr 1.5fr 1.5fr 1.5fr 1.5fr auto 4fr 1fr 1fr 1fr;
    grid-gap: 0px;
    height: 100vh;
    width: 100%;
    grid-template-areas:
    'header header header header' 
    'updates updates updates updates'
    'post1 post2 post3 post4'
    'review review review review'
    'sign-up sign-up sign-up sign-up'
    'footer1 footer3 footer3 footer2'
    ;

}

.header{
    grid-area:header ;
    display: grid;
    margin-bottom: 20px;
}

.header nav{
    display: flex;
    justify-content: space-around;
    position: relative;
    padding: 10px 30px;
    height: 20vh;
    background:radial-gradient(circle at bottom, #fff 60%,#F3FEB8,#FFB22C);
}
.header nav .logo{
    width: 10%;
    align-content: center;
}
.header nav .logo img{
    border-radius: 600px;
    width: 60px;
    height: 60px;
}
.header nav .heading{
    width: 50%;
    align-content: center;
}
.header nav .heading h1{
    font-weight: bold;
    letter-spacing: 5px;
    color:#2E236C ;

}
.header nav ul{
    display: flex;
    width: 40%;
    justify-content: space-around;
    align-items: center;
    
    
}
.header nav ul li{
    list-style: none;

}
.header nav ul li a{
    text-decoration: none;
    color:#2E236C;
    letter-spacing: 2px;   
    text-transform: uppercase;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    
}

a .active, a:hover{
    transition: 0.5s;
    background-color:#F3FEB8; 
}

.updates{
    width: 100%;
    display: grid;
    grid-area: updates;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.updates h1{
    color: #FFB200;
    font-weight: bold;
    text-decoration: underline 3px;
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.updates .news{
    color: #2E236C;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.updates .news .content .goal h3{
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline 3px;
    color: #2E236C;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.updates .news .content .goal p,.updates .news .content .objective p{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.post1{
    grid-area: post1;
    display: grid;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;

    
}
.post2{
    grid-area: post2;
    display: grid;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    
}
.post3{
    grid-area: post3;
    display: grid;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    
}
.post4{
    grid-area: post4;
    display: grid;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}


.post1 img, .post2 img, .post3 img, .post4 img{
    width: 100%;
    height: 300px;
    border-radius: 30px;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0,0.1);
}

.review{
    display: grid;
    grid-area: review;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.comment-box{
    width: 50%;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}
.profile{
    display: flex;
    align-items: center;

}
.username{
    display: flex;
    flex-direction: column;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.donator-comments p{
    font-size: 0.9rem;
}
.sign-up{
    display: grid;
    grid-area: sign-up;
    height: 30%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.container{
  left: 50%;
  transform: translate(-50% -50%);
  width: 500px;
}
h2{
    font-size: 20px;
    margin-bottom: 15px;
}
input{
    width: 80%;
    height: 50px;
    padding: 0 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #FFB200;  
}
input:focus{
    border: 1px solid black;
    outline: 0;
}
textarea{
    width: 80%;
    height: 150px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border:1px solid #FFB200 ;

}
textarea:focus{
    border: 1px solid black;
    outline: 0;
}
button{
    border: 0;
    padding: 10px 30px;
    background-color:#FFB22C;
    font-size: 18px;
    border-radius: 5px;
}

.footer1{
    grid-area: footer1;
    display: grid;
    width: 100%;
    height: 100%;
    color: #2E236C;
}
.footer2{
    grid-area: footer3;
    display: grid;
    width: 100%;
    height: 100%;
    color: #2E236C;
    align-items: center;
}
.footer2 ul li{
    list-style: none;
}
.footer2 ul li a{
    text-decoration: none;
    color: #2E236C;
    letter-spacing: 3px;
}
.footer2 p{
    text-align: center;
    font-size: 13px;
    color: #aaa;
}
.footer3{
    grid-area: footer2;
    display: grid;
    width: 100%;
    height: 100%;
    margin-top: 15px;
    color: #2E236C;
}

.footer1, .footer2,.footer3{
    background:#FFB200;
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer3 .instagram{
    display: flex;
}
.footer3 .instagram a{
    text-decoration: none;
    color: #2E236C;
    letter-spacing: 3px;
}

.footer3 .icon{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.footer3 .icon img{
    width: 100%;
    border-radius: 60%;

}
.footer3 .whatsapp, .footer2 .instagram{
    margin-top: 20px;
    display: flex;
    width: 100%;
    align-items: center;
}
