
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-image: url('./AA042524MD---BACKGROUND.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
}

.renameProfile {
    font-family: "Lexend", sans-serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.profile-image {
    margin-bottom: -10px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-family: "Lexend", sans-serif;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.profile-bio {
    font-family: "Lexend", sans-serif;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 90%;
}

.highlight {
    font-weight: 700;
    color: #ff0084;
}

.links-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    gap: 24px;
    margin-bottom: 50px;
}

.link-item {
    max-height: 350px;
    background-color: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.link-item:hover {
    transform: scale(1.02);
}

.link-content {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
}

.link-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
    color: navy;
}

.link-subtitle {
    font-size: 16px;
    color: #666;
}

.link-image {
    width: 100%;
    object-fit:cover;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.social-icon {
    background-color: #131314;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 12px;
    height: 12px;
}

@media (max-width: 500px) {
    .profile-image {
        width: 170px;
        height: 170px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .link-title {
        font-size: 22px;
    }

    .profile-bio {
        font-size: 16px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon img {
        width: 26px;
        height: 26px;
    }

    .links-container {
        max-width: 900px;
        gap: 12px;
        margin-bottom: 10px;
    }

    .link-item {
        max-height: 200px;
    }
    .profile {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .renameProfile{
        font-size: 20px;
        margin-bottom: 10px;
    }

    body{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}