body {
    font-family: sans-serif;
}
span {
    font-weight: bold;
}

#text-div {
   font-family: 'Courier New', Courier, monospace;
   font-weight: 600;
}

.card {
    display: flex;
    flex-direction: column;
    width: 600px;
    background-color: #f2f2f2;
    border: 1px solid #dedede;
    border-radius: 8px;
    padding: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}
#table {
    width: 60%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 16px;
  }

  #table th, #table td {
    border: 1px solid #555;
    padding: 10px;
    text-align: center;
  }

  #table th {
    background-color: #4c77af;
    color: white;
  }

  #table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
