﻿/*body {
    background-size: cover;
}*/


.social {
    position: fixed;
    top: 20px;
    z-index: 100;
}

    .social ul {
        padding: 0px;
        transform: translate(-270px,0);
    }

        .social ul li {
            display: block;
            margin: 2px;
            background: linear-gradient(1deg, #dbe83094, #1987546b);
            width: 300px;
            text-align: right;
            padding: 5px;
            border-radius: 0 30px 30px 0;
            transition: all 1.5s;
        }

            .social ul li:hover {
                transform: translate(5px,0);
                background: #efff00;
                transition: all 1.5s;
            }

                .social ul li:hover a {
                    color: white;
                }

                .social ul li:hover i {
                    color: #c44a73;
                    background: white;
                    transform: rotate(360deg);
                    transition: all 1.5s;
                }

            .social ul li i {
                margin-left: 10px;
                color: #000;
                background: white;
                padding: 9px;
                border-radius: 50%;
                width: 30px;
                height: 30px;
                transform: rotate(0deg);
                text-align: center;
                font-size: 15px;
            }
