* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e8e8e8;
  font-family: 'Courier New', Courier, monospace;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-flex {
    display: flex;
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.8rem;
}

.responsive-inline {
    display:inline-block;
}

p a{
    font-weight: bold;
    text-decoration: underline;
    text-decoration-style: dashed;
}


.small-text {
    font-size: 10px;
    color: #666;
    margin-bottom: 1rem;
}

.center-text {
    text-align: center;
}

.light-text {
    color: #999;
}

@media (max-width: 480px) {
    .responsive-inline {
        display:flex;
        flex-direction: column;
        align-items: center;
        gap:0.4rem;
    }
}