body {
  background-color: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* margin: 0; */
}

.dojo-sign {
  font-size: 3rem;
  color: #ffcc00;
  text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900, 0 0 30px #ff6600;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  49% {
    opacity: 1;
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900, 0 0 30px #ff6600;
  }

  50%,
  100% {
    opacity: 0.3;
    text-shadow: 0 0 5px #ffcc00, 0 0 10px #ff9900, 0 0 15px #ff6600;
  }
}

/* .container {
  width: 700px;
  background-color: black;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
} */


.button-dark {
  margin: 20px auto;
  background-color: black;
  text-align: center;
  border-radius: 10px;
  padding: 8px 16px;
  width: 50px;
  transition: background-color 0.6s ease;
}

.button-dark:hover {
  background-color: rgba(128, 128, 128, 0.244);
  border-color: rgba(255, 255, 255, 0.548);
  border: 1px 1px 1px 1px;
  border-style: solid;
}

.button-dark > a {
  color: white;
  text-decoration: none;
  padding: 8px, 16px;
}

.social-icons {
  margin-top: 20px;
  text-align: center;
}

.linkedin-icon {
  color: #0077b5;
  font-size: 24px;
  transition: color 0.3s ease;
}

.linkedin-icon:hover {
  color: #00548c;
}
