/* Created by Salma Essam  on 28/11/2024. */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Figtree", sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;  
    margin: 0;
    padding: 0;
    background-color:hsl(0, 0%, 0%);
}
.container{
    width: 280px;
    /* height: 400px; */
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background-color:  hsl(0, 2%, 12%);
    border: 1px solid black;
    border-radius: 10px;
    padding: 25px 10px;
}
.container h2{
    color: white;
}
.container span{
    color: rgb(146, 173, 246);
}
.container p{
    color: white;
}
ul{
    padding: 0;
    width: 90%;
}
ul li{
   padding: 8px 0px ;
   list-style: none;
   margin-bottom: 10px;
   border-radius: 8px;
    background-color: rgb(49, 49, 50);
    text-align: center;
}
a{
    text-decoration-line: none;
    color: white;
}
ul li:hover{
    background-color: rgb(40, 40, 41);
}
a:hover{
    color: rgb(146, 173, 246);
}
