html, body {
  height: 100%;
  margin:0;
}

body {
    font-family: 'VT323', monospace;
    /*background-color: #242424;*/

 }

.background-squares {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)); 
  grid-auto-rows: 50px;
  z-index: 0;
}

.square {
  position: relative;
  width: 55px;
  height: 55px;
  overflow:hidden;
}
.square::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(95, 94, 94, 0.567); 
  z-index: 1; 
}

.content-area {
  position: relative;
  z-index: 1; 
  margin: auto;
  width: 70%; 
  background-color: #242424; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin:0 auto;
}

.container {
  flex-grow: 1; 
  display: flex;
  flex-direction: column; 
  justify-content: flex-start;
  color: white;
  padding:0;
}
 
 .text-white {
   color: white;
 }
 .card{
     max-width: 400px; 
     background-color: #343a40;
 }
 footer {
   position: relative;
 }
 .navbar {
  flex-direction: column; 
  align-items: center;
}

.navbar-brand {
  font-size: 4rem;
  margin-bottom: 5px;
  text-align: center; 
}

.navbar-nav {
  display: flex;
  justify-content: space-around; 
  width: 100%; 
  padding: 0;
  margin: 0;
}

.nav-link {
  text-align: center;
  flex: 1; 
}

@media (max-width: 768px) {
  .navbar-nav {
    justify-content: space-around; 
    flex-wrap: nowrap; 
  }
}



/*Animation for the Brand */

.letter {
  display: inline-block;
  animation: colorChange 2s infinite;
  animation-direction: alternate;
}

@keyframes colorChange {
  0% { color: red; }
  25% { color: orange; }
  50% { color: yellow; }
  75% { color: green; }
  100% { color: blue; }
}

/* Delay each letter's animation for a staggered effect */
.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }
.letter:nth-child(8) { animation-delay: 0.7s; }
.letter:nth-child(9) { animation-delay: 0.8s; }
.letter:nth-child(10) { animation-delay: 0.9s; }



.grid {
 display: grid;
 margin-top:50px;
 grid-template-columns: repeat(32, 1fr);
 grid-template-rows: repeat(32, 1fr);
 grid-gap: 1px;
 width: 600px;
 height: 600px;
 margin: 0 auto;
}

.cell {
 background-color: #ddd;
 border: 1px solid #fff;
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 12px;
 color: #333;
 min-width: none;
 min-height: none;
}

.cell:hover::after {
 content: attr(data-tooltip);
 display: block;
 position: absolute;
 background-color: #fff;
 color: #333;
 padding: 5px;
 border-radius: 5px;
 font-size: 12px;
 top: 0;
 left: 100%;
 margin-left: 10px;
 z-index: 1;
}



/*Table prettyness*/

.table-title {
  text-align: center;
  color: white; 
  font-size: 24px;
  margin: 20px 0; 
  font-weight: bold; 
}

.styled-table {
  width: 60%;
  border-collapse: collapse;
  margin: 10px auto; 
  color: white;
  font-family: 'VT323', monospace;
  border: 2px solid orange; 
  border-radius: 8px;
  overflow:hidden;
}

.styled-table th,
.styled-table td {
  padding: 10px;
  text-align: left;
}

.styled-table th {
  background-color: darkorange; 
}

.styled-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.1); 
}

.social-share {
  margin-top: 10px;
  text-align: center;
}

.social-share img {
  margin: 0 10px; 
}

.share-text {
  color: white; 
  font-size: 24px; 
  margin-right: 10px;
}

.share-button {
  background-color: darkorange;
  color: white;
  border: none; 
  border-radius: 5px; 
  padding: 8px 12px; 
  cursor: pointer; 
  transition: background-color 0.3s;
}

.share-button:hover {
  background-color: orange; 
}





