
* {
    margin: 0;
    padding: 0;
    
    box-sizing: border-box;
    font-family: sans-serif;
}

   @media (max-width: 800px) {
    td img  {
        max-width: 110px;
        height: auto;
        
    }
}
@media (max-width: 800px) {
    main.table  {
        width: auto;
        height: auto;
     
    }
}


/*@page {
    size: landscape;
    margin: 0; 
}*/

body {
   
    background:#141414;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.table {
    width: 98vw;
    height: auto;
    background-color: rgba(67, 67, 67, 0.533);

    backdrop-filter: blur(7px);
    box-shadow: 0 .4rem .8rem #0005;
    border-radius: .8rem;

    overflow: hidden;
}

.table__header {
    width: 100%;
    height: 1%;
    background-color:#2600d1;
    padding: .3rem 1rem;
    text-align: center;
    color: white;
    justify-content: space-between;
    align-items: center;
    font-size: x-large;
    text-decoration: underline
}
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #d7d7d7 0%,
    #ffffff 29%,
    #c2c1c1 67%,
    #c9c9c9 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}



.table__body {
    width: 100%;
  
    background-color: rgba(5, 5, 5, 0.733);
    
    border-radius: .6rem;

}




table {
    width: 100%;
}

td img {
    width: 120px;
    height: 40px;
   margin-bottom: 2px;
    border-radius: 5px;

    vertical-align: middle;
}
td a {
   color:whitesmoke;
   font-size:medium;
   text-decoration: none;

  
}







.status {
    padding: .2rem  ;
    border-radius: 5px;
    text-align: center;
}



.status.pending {
    background-color:#000000;
    width: auto;
    margin-top: 10px;
    margin-left: 4px;
    border:rgba(130, 130, 130, 0.633) 1px solid;
    
   
}

.status.orange {
    background-color:#2600d1;
    width: auto;
    margin-top: 10px;
    border:rgba(130, 130, 130, 0.633) 1px solid;
}



/*@media (max-width: 1000px) {
    td:not(:first-of-type) {
        min-width: 22.1rem;
    }
}*/

