/* body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: background-color 0.3s ease;
} */

@import url(https://fonts.googleapis.com/earlyaccess/droidarabickufi.css);
.droid-arabic-kufi { font-family: 'Droid Arabic Kufi', serif; }

/* body:hover {
    background-color: #eee;
} */

.container_body {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 700px;
    margin: auto;
    position: relative;
    transition: transform 0.3s ease;
    /* bottom: 60px; */
    /* top: 60px; */
    margin-top: 121px;
}

/* .container_body:hover {
    transform: scale(1.02);
} */
  
.window {
    width: 160px;
    height: 160px;
    margin: 10px;
    border-radius: 10px;
    background: linear-gradient(45deg, #56094c, #77041e);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.window:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #77041e, #56094c);
    /* transform: scale(1.02); */

}
  
.window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
}

.window:hover::before {
    background: rgba(255, 255, 255, 0.2);
}
  
/* .window .button {
    width: 80px;
    height: 50px;
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #56094c;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
} */

.window .button:hover {
    transform: scale(1.2);
    background-color: #eee;
}
  
.icon-container {
    position: absolute;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    top: 50px;
    transition: top 0.3s ease;
    height: 27px;
    width: 27px;
    text-align: center;
}
  
.icon-container i {
    color: #56094c;
}
  
.title_upper {
    position: absolute;
    margin: 0 auto;
    bottom: 10px;
    transition: bottom 0.3s ease;
}
  
.title {
    text-align: center;
    width: 100%;
    color: #fff;
    z-index: 2;
    bottom: -10px;
    transition: color 0.3s ease;
}

.title:hover {
    color: #ccc;
}
  
@media only screen and (max-width: 767px) {
    .window {
        width: 100px;
        height: 100px;
        transition: width 0.3s ease, height 0.3s ease;
    }
  
    /* .window:hover {
        width: 120px;
        height: 120px;
    } */
  
    .title_upper {
        margin: 0 auto;
        bottom: 0px;
        transition: bottom 0.3s ease;
    }
  
    .icon-container {
        top: 10px;
        transition: top 0.3s ease;
    }
    
    .icon-container:hover {
        top: 5px;
    }

    .container_body{
        width: auto;
        margin-top: 121px;
    }
}
