/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: rgb(2,0,36);
background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(203,0,255,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #333;
    overflow: hidden;
}

.card {
    text-align: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    width: 90%;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profil Resmi */
.profile-pic {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
        border: 4px solid #bb00ed;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Başlık ve Unvan */
h1 {
    margin-bottom: 10px;
    font-size: 1.8em;
    color: #333;
    letter-spacing: 1px;
}

.title {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #777;
}
.secondTitle {
    margin-bottom: 20px;
    font-size: 0.7em;
    color: #777;
}

/* E-posta */
.email {
   display: inline-block;
    margin-bottom: 20px;
    font-size: 1em;
    text-decoration: none;
    color: #6f008c;
    font-weight: 600;
    border: 2px solid #ba00ed;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.email:hover {
    background: #16003B;
    color: #fff;
}

/* Sosyal Medya Linkleri */
.social {
    margin-top: 20px;
}

.social-link {
    margin: 0 10px;
    font-size: 0.9em;
    text-decoration: none;
    color: #555;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.social-link:hover {
    color: #74b9ff;
    border-color: #74b9ff;
}

/* Sosyal Medya Renkleri */
.linkedin {
    color: #0077b5;
}

.linkedin:hover {
    border-color: #0077b5;
}

.github {
    color: #40C463;
}

.github:hover {
    border-color: #9be9a8;
}
