* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #ffffff, #999c9e);
}

.container {
    text-align: center;
    max-width: 100%;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
    margin-top: 20px;
}

.username {
    margin-top: 15px;
    font-size: 25px;
    font-weight: bold;
    color: rgb(0, 0, 0);
}
.unvan{
    margin-top: 8px;
    font-size: 15px;
    font-weight: normal;
    color: gray
}
.altyazi{
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: normal;
    color: gray
}
.links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

.link-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px; /* dikeyde, yatay */
    height: auto; /* yüksekliği içerik belirler */
    width: 280px;
    height: 55px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: linear-gradient(to right, hwb(184 22% 31%), #7bb5b7);
}
.link-box i {
    font-size: 20px; /* ikon boyutu */
}
.link-box:hover {
    transform: scale(1.05); /* kutuyu büyüt */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* parlama efekti */ 
}