@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Quicksand:wght@300..700&display=swap');

/* General styles */
body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    background-image: linear-gradient(to bottom, #2c2c2c, #3d3d3d, #4f4f4f, #626262, #747474);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    background-color: #d6d6d6;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Profile styles */
.profile {
    margin-bottom: 20px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.username {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.bio {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Link button styles */
.link-btn {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.link-btn:hover {
    transform: scale(1.05);
}

.instagram {
    background-image: linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); <!-- #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #777737, #FCAF45, #FFDC80 -->
}

.linkedin {
    background-image: linear-gradient(to right, #0077b5, #005582);
}

.myweb {
    background-image: linear-gradient(to right, #666666, #333333);
}

.vsco {
    background-image: linear-gradient(to right, #1d1d1d, #424242, #656565);
}

.gallery {
    background-image: linear-gradient(to right, #fbc54e, #424242, #858585);
}


.link-btn:hover {
    background-color: #0056b3;
}

/* Mobile styles for iPhones */
@media (max-width: 428px) {
    body {
        padding: 10px;
    }

    .container {
        max-width: 100%;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Softer shadow for mobile */
    }

    .profile-pic {
        width: 80px;
        height: 80px;
    }

    .username {
        font-size: 20px;
    }

    .bio {
        font-size: 12px;
    }

    .link-btn {
        font-size: 14px;
        padding: 10px;
    }
}

/* Smaller iPhones like iPhone SE or 5/5S */
@media (max-width: 375px) {
    .profile-pic {
        width: 70px;
        height: 70px;
    }

    .username {
        font-size: 18px;
    }

    .bio {
        font-size: 11px;
    }

    .link-btn {
        font-size: 13px;
        padding: 9px;
    }
}

/* Ultra small devices like iPhone 4/4S */
@media (max-width: 320px) {
    .profile-pic {
        width: 60px;
        height: 60px;
    }

    .username {
        font-size: 16px;
    }

    .bio {
        font-size: 10px;
    }

    .link-btn {
        font-size: 12px;
        padding: 8px;
    }
}
