* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  form {
    /* border: 2px solid red; */
    box-shadow: 2px 3px 10px rgb(0, 72, 255);
    outline: none;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  input {
    margin: 1rem;
    height: 50%;
    width: 80ch;
    border: none;
    border: 2px solid rgb(0, 72, 255);
    box-shadow: inset 3px 3px 20px 1px rgb(0, 72, 255);
    outline: none;
    padding: 0 1rem;
    color: rgb(42, 26, 40);
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  button {
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgb(0, 72, 255);;
    color: white;
    font-size: 1rem;
    border: none;
    outline: none;
  }
  
  .cardsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .cardDiv {
    margin: 1rem;
    /* border: 2px solid red; */
    width: 20%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2rem;
    box-shadow: inset 2px 2px 10px rgb(11, 196, 165), inset 1px 1px 5px rgb(58, 157, 245);
    border-radius: 10px;
  }
  
  .cardDiv span {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  span {
    
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 2px 3px 10px rgb(54, 57, 62);
    background-color: rgb(0, 195, 255);
    color: black;
    font-weight: bolder;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .abilitiesDiv {
    display: flex;
    width: 100%;
    justify-content: space-between;
    
  }
  
  .abilitiesDiv p {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 2px solid rgb(0, 72, 255);
    box-shadow: inset 2px 2px 10px rgb(0, 72, 255), inset 1px 1px 5px rgb(0, 166, 255);
  }
  
  h2{
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgb(81, 88, 105);
  }
  
  img{
    filter: drop-shadow(3px 3px 10px rgb(65, 68, 75));
  }