*{
   
    margin: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
	 min-height: 100vh;

    background-color: #d5d5d5;
   
    display: flex;
    justify-content: center;
    align-items: flex-start;

   
  font-family: 'IRANSansWeb';
  src: url('font/IRANSansWeb.eot') format('eot'),
         url('font/IRANSansWeb.woff') format('woff'),
         url('font/IRANSansWeb.ttf') format('truetype');

    
}

@font-face {
  font-family: 'IRANSansWeb';
  src: url('font/IRANSansWeb.eot') format('eot'),
         url('font/IRANSansWeb.woff') format('woff'),
         url('font/IRANSansWeb.ttf') format('truetype');
}
.container{
    width: 90%;
    max-width: 400px;
    margin-top: 52px;
    margin-bottom: 52px;
}
@media (max-width: 600px) {
    .container {
        max-width: 350px;
    }
}


.container .card-header{
    background-color: #db354c;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 27px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container .card-header .caption p{
    color: #dae0fb;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    align-items: center;

}

.container .card-content{
    background-color: #fff;
    padding: 10px;
}

.container .card-content ul{
    list-style: none;
}

.container .card-content ul li{
    cursor: pointer;
    background-color: #fefefe;
    padding: 10px 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
    transition: transform 0.1s, box-shadow 0.1s;
}

.container .card-content ul li:hover{
    z-index: 5;
    transform: scale(1.3);
    box-shadow: 0px 0px 16px 6px rgb(126, 126, 134);
}

.container .card-content ul li .img-content{
	width:64px;

	height:64px;
	broder-radius:50%;
	overflow:hidden;
	padding:5px;
}

.container .card-content ul li .img-content img{
width:100%;
border-radius:50%;
}

/* Marquee styling for fixed footer */
marquee {
      background-color: #db354c;
	  color:white;
	  height:40px;
	  font-size:14px;
      /* Fixed positioning */
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1000; /* Ensure it's above other content */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
}