body{
    font-family: arial, sans-serif;
}

table {
    border-collapse: collapse;
    width: 100%;
    text-transform: uppercase;
  }
  
  td, th {
    border: 1px solid #F393A4;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: rgba(243,147,167,0.2);
  }
  
  /*Custom Scrollbar*/
  ::-webkit-scrollbar{
      background-color: #F8F3F7;
      width: 8px;
      height: 3px;
  
  }
  ::-webkit-scrollbar-thumb{
      background-color: #F393A4;
  }

  .card{
      width: 100%;
      text-align: center;
      background-color: rgba(243,147,167,0.2);
      margin-bottom: 30px;
      border: 1px solid #F393A4;
  }

  p a{
      text-decoration: none;
      color: black;
      font-weight: bold;
  }

.indir{
cursor: pointer;
background-color: #F393A4;
color: white;	
padding: 10px;
border: 1px solid white;
border-radius: 25px;
margin-top: 3px;
}

.indir:hover{
opacity: 0.7;
}

  #go-top {
    opacity: 0.7;
    height: 30px;
    width: 30px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-indent: -9999px;
    z-index: 97;
    display: none;
    background: url(images/top-button.svg);
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

#go-top:hover {
    opacity: 1;
}

.mobile-table-head{
    text-align: center;
}

@media screen and (max-width: 600px) {
.mobile-table-head{
    text-align: left;
}
}  