body {
  background-color: #111;
  color: #00ffcc;
  font-family: 'VT323', monospace;
  margin: 0;
  padding: 2rem;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: left;
  word-wrap: break-word;
  font-size: small;
  text-shadow: 0 0 2px #00ffcc;
}

.main-container {
  max-width: 480px;
  width: 100%;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  justify-content: left;
  text-align: left;
}

.profile-pic-container {
  display: flex;
  justify-content: center;
}

.profile-pic-element {
  width: 219px;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00ffcc;
}

.cursor {
  display: inline-block;
  animation: blink 0.5s step-end infinite;
  color: #00ffcc;
}


@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.button-container {
  display: flex;
  justify-content: center;
}

.button-element {
  display: block;
  margin: 0 auto 0 auto;
  padding: 0.5rem 1rem;
  background-color: #00ffcc;
  color: #111;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  border: none;
  box-shadow: 0 0 5px #00ddaa;
  font-weight: bold;
  font-family: 'VT323', monospace;
  font-size: small;
}

.button-element:hover {
  background-color: #00ddaa;
  transition: background 0.5s ease;
}

.input-field-element {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #00ffcc;
  background-color: #111;
  color: #00ffcc;
  width: 50px;
  text-align: center;
  margin: 0.5rem auto;
  display: block;
  outline: none;
  box-shadow: 0 0 5px #00ddaa;
}

.typewriter-section {
  max-width: 550px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  font-family: 'VT323', monospace;
  color: #00ffcc;
  font-size: small;
}

.centered {
  text-align: center;
}

.left {
  text-align: left;
}

.underlined {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden {
  display: none;
}

.margined {
  margin-left: 30px;
}

.transition {
  opacity: 0;
  transition: opacity 1.5s ease;
  background-color: rgba(0, 0, 0, 0.05);
}

.transition.show {
  opacity: 1;
}
