
/*DESKTOP*/ @media only screen and (min-width: 481px) {
h1 { 
  color: white;
  text-align: center;
  font-family: 'IM Fell Pica';
  text-decoration: none;
  font-size: 70px;
}

.heading-box {
    position: relative;
    border: 2px solid black;
    margin: 50px;
}

.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Transparent black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-image {
  max-width: 90%;
  max-height: 90%;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  cursor: pointer;
  font-size: 20px;
  z-index: 99999;
}

.table-container {
    margin: 0 auto;
    overflow-x: auto;
    max-width: calc(100% - 100px); /* Adjust margin and width according to your design */
}

table {
    
    filter: blur(.00rem);
    border-collapse: collapse;
}

th, td {
    text-align: left;
    background-size: cover;
}

th {
    color: rgb(18, 12, 12);
    font-family: 'Volutes';
    text-align: center;
    font-size: 40px;
    border: 3px solid black;
}

td { 
    font-family: 'Volutes';
    text-align: center;
    border: 1px solid black;
    text-decoration: underline;
}

.sort-arrow {
    margin-left: 5px;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    vertical-align: middle;
    border-width: 5px 4px 0;
    border-color: #000 transparent transparent;
}

.sort-arrow.up {
    border-width: 0 4px 5px;
    border-color: transparent transparent #000;
}

.sort-arrow.down {
    border-width: 5px 4px 0;
    border-color: #000 transparent transparent;
}
}
/*FONTS*/
@font-face {
  font-family: 'Volutes';
  src: url(./Volutes/Volutes.ttf);
}
@font-face {
  font-family: 'Fiddums';
  src: url(./fiddums-family/Fiddums\ Family.ttf)
}
@font-face {
  font-family: 'Fine Blackboard';
  src: url(./fine-blackboard/Fine\ Blackboard.ttf);
}
@font-face {
  font-family: 'IM Fell Pica';
  src: url(./im-fell-dw-pica/IMFePIsc29P.ttf);
  
}
/*IPHONE*/
@media only screen 
  and (min-device-width: 0px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
    h1{ 
      text-align: center;
      font-family: 'IM Fell Pica';
      text-decoration: none;
      font-size: 60px;
    }
    .heading-box {
        position: relative;
        border: 2px solid black;
        position: relative;
    
    }
    table {
      filter: blur(.00rem);
    
    }
    .table-container { 
      width: 100%; 
      overflow-x: auto; 
        overflow-y: auto; 
        margin: 0 auto;
        display: block;
        margin-top: 50px;
    }

    th, td {
      text-align: left;
      background-size: cover;
      white-space: nowrap;
    }
    th {
      color: rgb(18, 12, 12);
      font-family: 'Volutes';
      text-align: center;
      font-size: 40px;
      border: 1px solid black;
    
    }
    td { 
      font-family: 'Volutes';
      text-align: center;
      border: 2px solid black;
      text-decoration: underline;
    }
    .fullscreen-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); 
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    .fullscreen-image {
      max-width: 90%;
      max-height: 90%;
    }
    
    .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      color: white;
      cursor: pointer;
      font-size: 20px;
      z-index: 99999;
    }
    .sort-arrow {
      margin-left: 5px;
      display: inline-block;
      width: 0;
      height: 0;
      border-style: solid;
      vertical-align: middle;
      border-width: 5px 4px 0;
      border-color: #000 transparent transparent;
  }
  
  .sort-arrow.up {
      border-width: 0 4px 5px;
      border-color: transparent transparent #000;
  }
  
  .sort-arrow.down {
      border-width: 5px 4px 0;
      border-color: #000 transparent transparent;
  }
  }
