@font-face {
    font-family: 'OCR A Extended';
    src: url('../OCRAEXT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
 
    font-family: 'OCR A Extended', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

 background: #131313;
    background: linear-gradient(to right, #131313, #121212);
     margin: 0;
    overflow: hidden;
   
}

.under-construction {

  text-align: center;

}

h1 {
  font-size: 3rem;
  color: #52c245;
}
h2{
    color:#666;
}

p {
  font-size: 1.5rem;
  color: #666;
  animation: shake 1s infinite;
}

.refresh-btn {

font-family: 'OCR A Extended', sans-serif;
  background-color: #;
  color: white;
  padding: 15px 25px;
  /*border: none;*/
  cursor: pointer;
  border-radius: 8px;
  animation: blink 2s infinite;
  margin-top:10px;
    margin-left: 10px;
    position: relative;
    display: inline-block; 
    color: white; 
    background-color:#52c234; 
   
    border-radius: 5px; 
    font-size: 12px; 
    text-decoration: none; 
    overflow: hidden; 
    transition: transform 0.3s ease;

}

.refresh-btn:hover {
  background-color: #D31515;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.navbar {
    position: absolute; 
    top: 20px; 
    left: 20px; 
    z-index: 1000; 
}

.navbar__home {
    font-size: 24px, bold; 
    color: white; 
    text-decoration: none; 
    background-color: #0f9b0f; 
    padding: 10px; 
    border-radius: 5px; 
    transition: background-color 0.3s; 
}

.navbar__home:hover {
    background-color: rgba(255, 255, 255,1 ); 
    color: green; 
}


/*.loader {
  margin-top: 20px;
  position: relative;
  width: 200px;
  height: 150px;
}

.loader .cone {
  position: absolute;
  width: 0; 
  height: 0; 
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #ff6347;
  top: 0;
  left: 50px;
  animation: wobble 2s infinite ease-in-out;
}

.loader .crane {
  width: 10px;
  height: 120px;
  background-color: #2ecc71;
  position: absolute;
  left: 90px;
  animation: build 5s infinite ease-in-out;
}

.loader .builder {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #e74c3c;
  border-radius: 50%;
  left: 75px;
  bottom: 0;
  animation: bob 1s infinite ease-in-out;
}*/
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #00ff00; 
    font-family: monospace;
    font-size: 30px; 
    line-height: 1.5;
    opacity: 0.1; 
    z-index: -1; 
}
@keyframes wobble {
  0% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  100% { transform: rotate(-5deg); }
}

@keyframes build {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shake {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(2px, 2px); }
  50% { transform: translate(-2px, -2px); }
  75% { transform: translate(2px, -2px); }
}

