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

body {
  display: flex;
  align-items: center;
  flex-direction: column;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}


a {
  color: inherit;
  text-decoration: none;
}

.auth-button {
  display: inline-block;
  padding: 8px 16px;
  margin-left: 10px;
  background-color: #0070f3;
  color: white !important;
  border-radius: 5px;
  text-decoration: none !important;
  font-size: 14px;
  transition: background-color 0.2s;
}

.auth-button:hover {
  background-color: #0051cc;
}

#user-greeting {
  font-size: 14px;
  color: #333;
}

* {
  box-sizing: border-box;
}

main {
  min-height: 100vh;
  padding: 4rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  margin: 0;
  line-height: 1.15;
  font-size: 4rem;
}

.title,
.description {
  text-align: center;
}

.description {
  margin: 4rem 0;
  line-height: 1.5;
  font-size: 1.5rem;
}

.code {
  background: #fafafa;
  border-radius: 5px;
  padding: 0.75rem;
  font-size: 1.1rem;
  font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
    Bitstream Vera Sans Mono, Courier New, monospace;
}

.grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
}

.card {
  margin: 1rem;
  padding: 1.5rem;
  text-align: left;
  color: inherit;
  text-decoration: none;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  transition: color 0.15s ease, border-color 0.15s ease;
  max-width: 300px;
}

.card:hover,
.card:focus,
.card:active {
  color: #0070f3;
  border-color: #0070f3;
}

.card h2 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
}

.card p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .grid {
    width: 100%;
    flex-direction: column;
  }
}

.row {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* From Uiverse.io by vikas7754 */ 
@keyframes blinkCursor {
  50% {
    border-right-color: transparent;
  }
}

@keyframes typeAndDelete {
  0%,
  10% {
    width: 0;
  }

  45%,
  55% {
    width: 26ch;
  }

  90%,
  100% {
    width: 0;
  }
}

.terminal-loader {
  width: 100%;
  max-width: 400px;
  height: 200px;
  background: #d3d3ff;
  border: 1px solid #ffffff3e;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px;
  box-shadow: 0 0 15px rgb(211, 211, 255, 0.4);
}

.terminal-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #343434;
  padding: 6px;
}

.terminal-controls {
  position: absolute;
  left: 10px;
  display: flex;
  gap: 7px;
}

.control {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #777;
}

.control.close {
  background-color: #e16160;
}

.control.minimize {
  background-color: #f2c944;
}

.control.maximize {
  background-color: #64c466;
}

.terminal-title {
  color: #d3d3ffc1;
}

.content {
  padding: 10px;
}
.text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #4d4092;
  animation: typeAndDelete 10s steps(39) infinite,
    blinkCursor 0.9s step-end infinite alternate;
  color: rgb(80, 64, 152);
  font-weight: 600;
}


.row {
  display: flex;
  gap: 10px; /* space between images */
  justify-content: center; /* center them horizontally */
  align-items: center; /* align them vertically if needed */
}
.row img {
  width: 100px; /* or whatever size you want */
  height: auto;
  cursor: pointer;
}