html{
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
    --mdc-theme-primary: #a1a150;
    --mdc-theme-secondary:  #123456;
}

body, h1, h2, h3, li{
    font-family: "Libre Franklin", sans-serif;
}

p {
    margin-bottom: 0.5em;
}

.h1 {
    font-weight: 900;
    font-size: 2.625rem;
    line-height: 3rem;
    word-break: break-word;
    margin-bottom: 1.25rem;
}

.h2 {
    font-weight: 700;
    font-size: 1.8125rem;
    line-height: 2rem;
    word-break: break-word;
}

.h3 {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8125rem;
    word-break: break-word;
}

a {
    color: #a1a150;
    text-decoration: none;
    line-height: inherit;
    cursor: pointer;
}

a:hover {
    color: #000;
}

.copybutton {
    display: inline-block;
    padding: .5rem .75rem;
    font-family: "Libre Franklin", sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500;
}

.button {
    font-family: "Libre Franklin", sans-serif;
    display: inline-block;
    font-weight: 500;
    line-height: 1rem;
    padding: .75rem 1rem;
    background-color: #a1a150;
    color: white;
}

.button:hover{
    background-color: #A9A95E;
}

.button:active{
    background-color: #919148;

}

.list-square {
    list-style-type: square;
}

.tabcontent{
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

.tabcontent + #DirectInput{
    display: none;
}

.tab-border {
  --tw-border-opacity: 1;
  // #a1a150;
  border-color: rgba(161, 161, 80, var(--tw-border-opacity));
}

::-webkit-file-upload-button {
    font-family: "Libre Franklin", sans-serif;
    display: inline-block;
    font-weight: 500;
    line-height: 1rem;
    padding: .75rem 1rem;
    background-color: #a1a150;
    border: none;
    color: white;
}

.drag-over {
    border: 4px dashed #A1A150 !important;
    margin-left: 4px;
    margin-right: 4px;
    margin-top: 0px;
    opacity: 25%;
    background: rgba(255,255,255,0.9) !important;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* ***** Loader/Spinner ***** */
.loader {
  border: 12px solid #fff;
  border-radius: 50%;
  border-top: 12px solid #a1a150;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
