        body {
            font-family: Arial, sans-serif;
            background: #eb496f;
            text-align: center;
            margin: 0;
            padding: 0;
            color: #ffcccc;
            height: 100vh;
            /* высота окна */
            display: flex;
            justify-content: center;
            align-items: center;
            /* центр по вертикали */
        }


        p {
            margin: 0;
        }

        ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

        .container {
            width: 400px;
            max-width: 90%;
            padding: 20px;
            margin: auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-image: url(./images/bg.JPG);
        }


        /* .full-info {
            padding-top: 100px;
        } */

        .profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ff85a2;
        }

        .title {

            margin-bottom: 14rem;

        }

        .title-media {
            color: rgba(255, 255, 255, 0.8);

        }

        .media-container {
            color: #ffcccc;

        }

        .description {
            color: gray;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .link-container {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            margin: 10px 0;
            background: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            color: #ff6666;
            font-weight: bold;
            border-radius: 10px;
            transition: all 0.3s;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .link-container:hover {
            background: #870120;
            color: white;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .link-icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

        .link-text {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .link-title {
            font-weight: bold;
        }

        .link-subtext {
            font-size: 12px;
            color: gray;
        }

        .bordered {
            border: 2px solid #ff85a2;
        }

        @media (max-width: 600px) {
            .container {
                max-width: 90%;

            }

            .link-container {
                padding: 12px 15px;
                font-size: 14px;
            }

            .link-icon {
                width: 28px;
                height: 28px;
            }

            .title {
                font-size: 22px;
            }

            .description {
                font-size: 13px;
            }
        }