body {
    background: linear-gradient(to right, #1f1f1f, #333333);
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #1f1f1f;
    border-bottom: 1px solid #333333;
    padding: 5px;
    text-align: center;
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h2 {
    margin-top: 0;
    text-align: center;
}

.project-link {
    text-decoration: none;
    color: white;
}

.project {
    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project img {
    border-radius: 45px;
    transition: transform 0.3s;
}

.project:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project img:hover {
    transform: scale(1.1);
}

footer {
    padding: 20px;
    background: #292929;
    text-align: center;
}

h3, h4 {
    margin: 10px 0;
}

.donate-button {
    background-color: #4a73b5;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.donate-button:hover {
    background-color: #3a5b8b;
    transform: scale(1.05);
}
.quickbar {
    position:sticky;
    top: 0;
    width: 100%;
    background: #292929;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding-right: 40px;
    box-sizing: border-box; 
    margin-right: 20px;
}

.quickbar a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.quickbar a:hover {
    color: #4a73b5;
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.quickbar-icon {
    height: 40px;
    width: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.quickbar-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.project-overview {
    text-align: center;
    margin: 20px 0;
}

.project-image {
    border-radius: 45px;
    transition: transform 0.3s;
}

.project-image:hover {
    transform: scale(1.1);
}

.description, .credits {
    background: #545454;
    border-radius: 45px;
    padding: 10px; /* Reduced padding */
    text-align: center;
    margin: 20px 0;
    max-width: 600px;
}

.description h5, .credits h5 {
    margin-top: 0;
}
