@font-face {
    font-family: 'RB';
    src: url('RB-Bold.ttf') format('truetype');
}

body {
    background: #00091B;
    color: #fff;
    direction: rtl;
    font-family: RB;
}

@keyframes fadeIn {
    from {
        top: 20%;
        opacity: 0;
    }

    to {
        top: 100;
        opacity: 1;
    }

}

@-webkit-keyframes fadeIn {
    from {
        top: 20%;
        opacity: 0;
    }

    to {
        top: 100;
        opacity: 1;
    }

}

.wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;

}

@keyframes fadeInImg {
    from {
        opacity: 0;
}

    to {
        opacity: 1;
    }

}

@-webkit-keyframes fadeInImg {
    from {
        opacity: 0;
}

    to {
        opacity: 1;
    }

}

img {
    position: absolute;
    top: 87%;
    z-index: -1;
    height: 10%;
    animation: fadeInImg 1800ms ease;
    -webkit-animation: fadeInImg 2000ms ease;
}

.title {
    font-size: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    font-family: RB, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;

}

.dot {
    color: #c81f51;
}

p {
    text-align: center;
    margin: 18px;
    color: #83949d;
    font-family: 'Muli', sans-serif;
    font-weight: normal;
    font-family: RB, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;

}

.icons {
    text-align: center;

}

.icons i {
    color: #c81f51;
    background: #fff;
    height: 15px;
    width: 15px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50px;
    border: 2px solid #83949d;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
}

.icons i:hover,
.icons i:active {
    color: #fff;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;

}