﻿/*
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            position: relative;
            font-family: Arial, sans-serif;
        }

        .content {
            height: 80vh;
            background-color: #f5f5f5;
            padding: 20px;
            text-align: center;
        }
            */
.social-media-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 8px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.profile-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.follow-text {
    margin-right: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .social-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    }

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.twitter {
    background-color: #1DA1F2;
}

.icon-img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
    .follow-text {
        display: none;
    }

    .social-media-container {
        padding: 5px 10px;
    }

    .profile-image {
        width: 38px;
        height: 38px;
        margin-right: 8px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .icon-img {
        width: 18px;
        height: 18px;
    }
}
