﻿@font-face {
    font-family: 'TheSansArabic';
    src: url('TheSansArabic-Plain3.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin-top: 150px;
    background-color: rgb(244, 246, 249);
    background-size: cover;
    font-family: 'TheSansArabic';
}

.user-pic {
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 100%;
    margin: 20px auto 20px;
    border-left: 3px solid #ddd;
    border-right: 3px solid #ddd;
    border-top: 3px solid #00a30b;
    border-bottom: 3px solid #00a30b;
    transition: 0.5s;
}

.card-box:hover .user-pic {
    transform: rotate(0deg);
    transform: scale(1.1);
}

.card-box {
    height: 500px;
    width: 100%;
    padding: 15px;
    background-color: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0px 0px 8px 0px #d4d4d4;
    transition: 0.5s;
}


.btn {
    margin-top: 15px;
}

    .btn:hover {
        box-shadow: 0px 0px 8px 0px #3cc800;
    }

h6 {
    
    font-weight: 900;
}

h4 {
    margin-bottom: 50px;
}