body{
    margin: 0;
    font-family: "Arial", sans-serif;
    background: linear-gradient(120deg,#330558, #c96bf5);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header{
    text-align: center;
    padding: 30px;
}
header img{
    width: 150px;
    height: 150px;
    border-radius: 10%;
    border: 4px solid #fff;
}
header h1 {
    margin: 15px 0 5px;
    font-size: 26px;
}
header p {
    margin: 2px;
    font-size: 16px;
}
main{
    display: flex;
    flex-direction: column;
    gap:20px;
    width: 80%;
    max-width: 400px;
}
.card{
    background: rgba(255, 255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}


.card:hover{
    transform: scale(1.05);
}
.card h2{
    margin-bottom: 10px;
}
.card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
footer{
    margin: 30px 0px;
    font-size: 14px;
}

main img{
    height: 400px;
}

.insta{
    height: 200px;
}

.git{
    display: flex;
    
}

a img{
    width: 200px;
    height: 200px;
}
#github img{
    height: 200px;
    width: 200px;
}