* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #050a30, #0b1d60);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Bubbles efekti "profile-img içerisinde devamı var" */

.profile-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px auto;
}

.profile-img {
    position: relative;
    z-index: 2;
}

.profile-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4da3ff;
    margin-bottom: 20px;
}

/* Baloncuk canvas */
#bubbles {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 160px;
    height: 160px;
    z-index: 1;
}

h1 {
    font-size: 26px;
    margin-bottom: 8px;
}

p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    text-decoration: none;
    padding: 12px 22px;
    background: #4da3ff;
    color: #fff;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}


.btn:hover {
    background: #1c6fd1;
    transform: translateY(-3px);
}

/* icon büyütme */

.btn i {
    transition: 0.3s;
}

.btn:hover i {
    transform: scale(1.5);
}


/* Mobil uyum */
@media(max-width:600px) {
    .card {
        width: 90%;
        padding: 30px 20px;
    }
}

/* Daktilo efekti */

#typewriter::after {
    content: "|";
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}