 #ftbody {
    margin: 0 auto;
    width: 90%;
    max-width: 70%;
    margin: 0 auto;
    opacity: 1;
    color: black;
  }

  body {
    font-family: "Lato", sans-serif;
    
}

  #ftt {
    font-size: 0.7rem;
  }

  .modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
  
  @layer utilities {
    .bg-muted {
      background-color: hsl(var(--muted));
    }
  
    .text-muted-foreground {
      color: hsl(var(--muted-foreground));
    }
  }
  
  @media only screen and (max-width: 767px) {
    #footer {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
    }
  }
  
