* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Salda';
    src: url('SALDA.otf') format('opentype');
}

@font-face {
    font-family: 'Frank';
    src: url('FRANK.ttf') format('truetype');
}

body {
    background: linear-gradient(to bottom, #000000 0%, #9b7ab8 100%);
    min-height: 100vh;
    color: #ffffff;
    font-family: 'Salda', Arial, sans-serif;
    line-height: 1.6;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.social {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background-color: rgba(155, 122, 184, 0.5);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Salda', Arial, sans-serif;
}

.social-button svg {
    flex-shrink: 0;
}

.social-button:hover {
    background-color: rgba(155, 122, 184, 0.8);
}

.bio {
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects h2 {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-family: 'Frank', Arial, sans-serif;
}

.project {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.project-text {
    flex: 1;
}

.project-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Frank', Arial, sans-serif;
}

.project-text p {
    font-size: 16px;
    line-height: 1.6;
}

.project-image {
    flex: 0 0 250px;
}

.project-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.donate {
    margin-top: 80px;
}

.donate h2 {
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: 'Frank', Arial, sans-serif;
}

.kickstarter-link {
    display: inline-block;
    color: #ffffff;
    background-color: rgba(57, 35, 75, 0.862);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.kickstarter-link:hover {
    background-color: rgba(124, 96, 147, 0.775);
}

@media (max-width: 768px) {
    .project {
        flex-direction: column;
        text-align: center;
    }
    
    .project-text {
        text-align: center;
    }
    
    .project-image {
        flex: 0 0 auto;
    }
}