*{
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
}
body{
    width: 100%;
    height: 100vh;
        background: url(background.jpg);
        
display: flex;
justify-content: center;
align-items: center;
}

.container{
    width: 80%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
   align-items:center;
   
   background: 
      
  linear-gradient(135deg,  
        rgba(255, 255, 255, 0.15) 0%,   
        rgba(0, 0, 0, 0.3) 50%  )     ; 
     

   backdrop-filter: blur(15px);
   border-radius: 15px;
 padding: 20px; 


}
.container .pic img{
    height: 150px;
    width: 150px;
    border-radius: 50%;
  padding: 5px;
    background: linear-gradient( rgba(52, 199, 89, 0.2) , rgba(0, 122, 255, 0.2) ,rgba(255, 59, 48, 0.5) );
  transition: 0.3s;


    
    
}
.container .text h1 , p{
    color: white;
}
.container .text p{
    font-size: 25px;
    text-align: center;
}
.container .buttons button {
    height: 50px;
    width: 150px;
    border: 0;
    border-radius: 50px;
    margin: 45px;
    color: white;
    font-size: 15px;
    transition: 0.3s;
    

}
.container .buttons .bt1{

background: rgba(52, 199, 89, 0.2);
transition: 0.3s;
backdrop-filter: blur(10px);
border:1px solid rgba(52, 199, 89, 0.4) ;

}
.container .buttons .bt2{
background: rgba(0, 122, 255, 0.2);
transition: 0.3s;
border: 1px solid rgba(0, 122, 255, 0.4);
backdrop-filter: blur(10px);
}
.container .buttons .bt3{
    background: rgba(255, 59, 48, 0.2);
    transition: 0.3s;
    border: 1px solid rgba(255, 59, 48, 0.4);
    backdrop-filter: blur(10px);
}



.container .buttons .bt1:hover{
    background: rgba(52, 199, 89, 0.5) ;
    color: lightgreen;
    transform: scale(1.2);
    transition: 0.3s;
}

.container .buttons .bt2:hover{

 background: rgba(0, 122, 255, 0.5) ;
    color: lightblue;
    transform: scale(1.2);
    transition: 0.3s;

}
.container .buttons .bt3:hover{

background: rgba(255, 59, 48, 0.5) ;
    color: tomato;
    transform: scale(1.2);
    transition: 0.3s;

}
.container .pic img:hover{
     transform: scale(1.2);
    transition: 0.3s;

}

.container .buttons:hover{

box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    transition: 0.3s;

}

.container .text:hover{
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    transition: 0.3s;
padding: 20px;
}
.container .text{
    transition: 0.3s;
}



 








@media (max-width: 600px) {
    .container {
        width: 90%; /* عرض مناسب للموبايل */
        height: auto; /* ترك الارتفاع يتحدد حسب المحتوى لضمان عدم خروج النص */
        padding: 30px 15px; /* مسافات داخلية متوازنة */
        justify-content: center;
        gap: 20px; /* مسافة بين العناصر */
    }

    .container .pic img {
        height: 120px; /* تصغير الصورة قليلاً */
        width: 120px;
    }

    .container .text p {
        font-size: 18px; /* تصغير الخط ليناسب شاشة الهاتف */
        padding: 0 10px;
    }

    .container .buttons {
        display: flex;
        flex-direction: column; /* ترتيب الأزرار فوق بعضها في الموبايل */
        width: 100%;
        align-items: center;
        margin: 0;
    }

    .container .buttons button {
        width: 80%; /* جعل الزر عريضاً وسهل الضغط */
        margin: 10px 0; /* مسافة بسيطة بين كل زر والآخر */
        height: 45px;
    }

    }


@media (min-width: 601px) and (max-width: 1024px) {
    .container {
        width: 70%; 
        height: auto;
        padding: 40px;
    }

    .container .text p {
        font-size: 22px; 
    }

    .container .buttons {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 20px;
    }

    .container .buttons button {
        margin: 10px;
        width: 140px;
    }
 
}