@keyframes grow {
 0% {transform: scale(1);}
 100% {transform: scale(1.7);}
  
}


body {
  background-image: url("https://file.garden/ZfNpOFA4xzfd-1HH/resources/pla%20ui/bg-weave-dark.jpg");
  
}

.maincontainer {
  justify-content: center;
  display: flex;
}

.card {
  background-image: url("https://file.garden/ZfNpOFA4xzfd-1HH/resources/pla%20ui/rahhhh2.png");
  background-size: cover;
  height: 600px;
  diaplay: flex;
  margin: 50px;
  border-radius: 10px;
  text-align: center;
  flex-wrap: wrap;
}


.small { flex: 1 1 5%; 
max-width: 250px; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; 
text-align: center;
display: flex;
justify-content: space-evenly;
padding: 10px;}
.fullnormal { flex: 1 1 100%; }
.half { flex: 1 1 49%; }
.smallscroll { flex: 1 1 9%;
overflow: auto;
max-height: 400px;
scrollbar-width: thin;
scrollbar-color: var(--accent) var(--bg);
}
.halfscroll { flex: 1 1 49%; 
overflow: auto;
max-height: 400px;
scrollbar-width: thin;
scrollbar-color: var(--accent) var(--bg);}


.images {
  display: flex;
 justify-content: space-around;
 flex-direction: row;
  padding-right: 200px;
  padding-top: 20px;
}


span a:hover, span a:focus{
 animation: grow 1s ease-in 0s 1 normal none; 
}