@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb); /* music vibe gradient */
    color: #333;
}

.container {
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #7e22ce;
    margin-bottom: 20px;
}

.img {
    width: 150px;
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.section-title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #16a34a;
    border-bottom: 3px solid #16a34a;
    display: inline-block;
    padding-bottom: 5px;
}

.description {
    text-align: left;
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #7e22ce;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #581c87;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(126,34,206,0.3);
}
.technologies {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.logo {
    height: 90px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}
