@import url('https://fonts.googleapis.com/css2?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');

*{
    padding: 0;
    margin: 0;
    font-family: poppins , monospace;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    background-color: #fff;
    color: #343a40;
    min-height: 100vh;
}

#home{
    padding: 6rem 2rem;
    text-align: center;
}

#home .heading{
    padding-top: 6rem;
    font-size: 2.4rem;
    letter-spacing: .2rem;
    
}
#home .heading>span{
    color: #FB8500;
    border-bottom: .2rem solid #8ECAE6;
}

#home .sub-heading{
    font-size: 1.6rem;
    padding-top: 4rem;
    color: #FB8500;
    
}
.btn{
    display: inline-block;
    margin: 2rem 0 1.2rem 0;
    background-color: #FB8500;
    padding: .5rem 2rem;
    border: none;
    border-radius: 25rem;
    color: #023047;
    transition: .8s;
    cursor: pointer;
    
    
}
.btn-box{
    text-align: center;
    
}
.btn-box > .btn{ 
    margin-top: 1rem; 
    font-size: 2rem;
  }
.btn:hover{
    background-color: #FFB703;
    color: #22739b;

}
.game-body{
  min-height: 100vh;
  overflow: hidden;
  background-color: #fff;
 
}
.game{
 
    overflow: hidden;
}
.status{
    padding: .5rem;
    display: flex;
    background-color: #023047;
    justify-content: space-evenly;
    align-items: baseline;
}
.availeble-cards{
    display: flex;
    flex-direction: column;
    border: solid;

}
.availeble-cards .col{
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
    align-content: space-evenly;
    margin-bottom: .5rem;
    margin-top: .5rem;
    width: 100%;
    align-items: center;
   justify-content:center ;
   
    
}
.card{
    font-size: 2.4rem;
    width: 5rem;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    pointer-events:none;
    
}

.card >h1{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    /* border: #8ECAE6 solid .2rem; */
    /* background-color: #023047; */
    border-radius: 8px;
    background-color: #FB8500;
}
.card >h1>span{
    visibility: hidden;  
    transform:rotateY(180deg);
    color: #023047;
}
.pop-up{
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 2rem;
    color: #fb8600;
    z-index: 1;
    transform: translate(-50% , -50%) scale(0.1);
    visibility: hidden;
    transform:  transform 0.5s ,top 0.5s;
    
}
