

.social {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction:row
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(90deg, #910B21 0%, #070590 300%);
    width: 50px;
    height: 50px;
    border-radius: 60px;
    font-size: 24px;
    margin-right: 10px;
    border:2px solid white;
}

.social a:hover {
    background: linear-gradient(40deg, #060553 0%, #610B21 90%);
    color: white;
    text-decoration:none;
    text-shadow:3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000
}

@media (max-width: 450px) {
    .social {
        bottom: 10px;
        right: 0;
        width: 100%;
        justify-content:center
    }

    .social a {
        width: 40px;
        height: 40px;
        margin-right:5px
    }
}






