.logo {
    font-size: 25px;
    font-weight: bold;
}

.center-cards {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;   /* center horizontally */
  gap: 1rem;             /* space between cards */
  margin-top: 2rem;
}

.card-red {
  background-color: #BA1104;
  border-radius: 20px;
  padding: 2rem;  
}

.align-right {
  position: absolute;
  flex: none;                 /* prevent stretching */
  margin-left: auto;          /* push to far right */
  justify-content: flex-end; /* push to the right */
  margin-top: auto;          /* push it to the bottom if card grows */
}

.align-left {
  flex: none;       /* shrink-wrap text */
  display: inline-block; /* makes width = text width */
  justify-content: flex-start; /* push to the left */
  flex-direction: column; /* stack vertically */
  margin-top: auto;          /* push it to the bottom if card grows */
}

.navbar {
    position: sticky;
    top: 0;

    z-index: 1000;
}