.social-media-icons ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.social-media-icons a {
    display: inline-block;
    text-decoration: none;
    padding: 7px;
}

.social-media-icons a:nth-child(1) i {
    color: #d34836;
}

.social-media-icons a:nth-child(2) i {
    color: #4099FF;
}

.social-media-icons a:nth-child(3) i {
    color: #b31217;
}

.social-media-icons a:nth-child(4) i {
    color: #FF6600;
}

.social-media-icons a i:hover{
    color: whitesmoke;
}
.blink {
    animation: blinkMe 1s linear infinite;
}
@keyframes blinkMe {
    50% {
        opacity: 0;
    }
}

.badge-wrapper {
    position: relative;
}

.badge {
    position: absolute;
    top: 0;
    right: -5px;
    /*display: block;*/
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #7b0861;
}
.container-body {
    background-color: #1f1f1f7f;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-top: none;
    padding: 40px 35px 35px;
    position: relative;
}
#div_link2{
    color: black;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

p.double {
    border-style: double;

}
ol { counter-reset: item; }
ol li { display: block;
    font-family: 'B Zar';
    font-size: 25px}
ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color: red;
}

