@font-face {
            src: url("../font/ft.otf") format("truetype");
            font-family: ft;
             /* تأكد من تعديل المسار إذا كان اسم المجلد الذي أنشأته في الخطوة 2 يختلف */
        }
*
{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    /* font-size: 25px; */
    /*font-family: Arial, Helvetica, sans-serif;*/
        font-family: ft;

}
:root
{
        --body-color: white;
--sidebar-color: rgb(195, 224, 255);
--primary-color: rgb(160, 204, 255);
--primary-color-light: rgb(0, 119, 255);
--text-color: black;
--toggle-color: #4267B2;


    
}
body{
    background-color: var(--body-color);
}

.head
{
    width: 100%;
    height: 70px;
    text-align: center;
    line-height: 60px;
    background-color: var(--sidebar-color);
    position: relative;
}

.head .logo
{
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 70px;
}

.main
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 35px;
}

.main .contain
{
    width: 930px;
    height: 350px;
    overflow: hidden;
    margin-top: 15px;
}

.main .contain .card[data-id="1"]
{
    width: 100%;
    /* height: 350px; */
    background-image: url("../img/paint.jpg");
    background-size: cover;
    cursor: pointer;
    padding: 25px;
    transition: 0.7s ease;
}

.main .contain .card[data-id="2"]
{
    width: 100%;
    /* height: 350px; */
    background-image: url("../img/sur.jpg");
    background-size: cover;
    cursor: pointer;
    padding: 25px;
    transition: 0.7s ease;
}

.main .contain .card[data-id="3"]
{
    width: 100%;
    /* height: 350px; */
    background-image: url("../img/open.jpeg");
    background-size: cover;
    cursor: pointer;
    padding: 25px;
    transition: 0.7s ease;
}
.main .contain .card .border
{
    width: 90%;
    height: 300px;
    border: 1px solid white;
    text-align: center;
    align-items: center;
    line-height: 290px;
    color: black;
}

.main .contain .card:hover 
{
    transform: scale(1.1);
}

a
{
    text-decoration: none;
}