body{
    margin: 0;
    font-family: Arial, sans-serif;
    color: black;
}
.nav-bar{
    display: flex;
    justify-content: space-between;
    background-color: #0f1117;
    padding: 20px 50px;
    color: white;
    align-items: center;

}
.logo{
    font-size: 20px;
    font-weight: bold;
}
.logo a{
    text-decoration: none;
    color: white;
}
.nav-links a{
text-decoration: none;
color: white;
margin: 0 14px;
font-size: 16px;
}
.auth-button{
    gap: 20px;
    display: flex;
}
.auth-button button{
    padding: 14px 22px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.auth-button .Login{
    background-color:transparent;
    border:1px solid white;
    color: white;
    border-radius: 6px;
}
.Login:hover{
    background-color: #ff0055;
    color: white;
    border:1px solid white;
    border: none;
}
.auth-button .Donate{
    background-color: #ff0055;
    color: white;
    border-radius: 6px;
}
.Donate:hover{
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 6px;
}

.featured-stories{
    padding: 30px;
   
}
.featured-stories h1{
    text-align: center;
    margin-bottom: 30px;
}
.featured-stories p{
    text-align: center;
    font-size: 19px;
    margin-bottom: 30px;
    font-style: italic;
}
.stories{
    height: 474px;
    
    padding-left: 90px;
}
.stories-card{
    padding: 20px;
    width: 25%;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    float: left;
    margin-left: 2%;
    height: 345px;
    box-shadow:5px 5px 10px rgba(0, 0, 0, 0.3);
    background:#ff0055;
}
.stories-card:hover{
transform: translateY(-4px);
}
.image-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.story-title{
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
    font-size:20px;
}
.image-holder{
    margin-bottom: 15px;
}
.story-content{
    color: white;
    margin-bottom: 15px;
}
.call-to-action-two{
    padding: 14px 22px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    margin-left: 40%;
    margin-top: 2%;
}
.call-to-action{
    padding: 14px 22px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
}
.call-to-action:hover{
    background-color: #ff0055;
    color: white;
    border:1px solid white;
}

.footer{
    padding: 30px 20px;
    border-top: 5px solid #ff0055;
    display: flex;
}
.footer-contianer{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}
.footer-section h3{
    color: #ff0055;
    font-size: 22px;
    text-decoration: underline;
}
.address-item{
    margin-bottom: 12px;

}
.social-links{
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.social-link{
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background:linear-gradient(to bottom right, #ff0055, #0f1117) ;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-bottom: 10px;
}