body {
  height: 100%;
  background: url("../images/svg/undraw_job_hunt_re_q203.svg");
  background-position: right;
  /* background-size: contain; */
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  background-attachment: fixed;
}

.courses {
  position: relative;
  margin-top: 15rem;
  z-index: 1;
}
.note {
  width: 50%;
  background-color: rgb(224, 240, 10);
  height: 5rem;
  padding: 1rem;
  color: rgb(61, 61, 61);
  display: flex;
  align-items: center;
  justify-content: center;
}
table {
  margin: 2rem;
  width: 90%;
}

table,
tr,
th,
td {
  border-spacing: 0;
  color: rgb(0, 0, 0);
}

.top-table-heading {
  background-color: gold;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "oswald", helvetica;
  letter-spacing: 0.1rem;
  border-spacing: 3rem;
  padding: 5rem 9rem;
}

tr {
  margin: 1rem;
  height: 7rem;
}

th {
  background-color: crimson;
}

tr:nth-child(even) {
  background-color: rgba(38, 119, 185, 0.836);
  transition: all 300ms ease-out;
  text-align: center;
}

tr:nth-child(odd) {
  background-color: rgba(253, 253, 253, 0.226);
  transition: all 300ms ease-out;
  text-align: center;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}

tr:nth-child(even):hover {
  transform: scale(1.02);
}

tr:nth-child(odd):hover {
  transform: scale(0.98);
}

td {
  padding: 3rem 6rem;
  text-transform: capitalize;
}

td a {
  padding: 0.6rem 1.2rem;
  background-color: crimson;
  color: white;
  border-radius: 0.5rem;
}

@media (max-width: 900px) {
  .top-table-heading {
    padding: 1.5rem 3rem;
  }

  table {
    width: 95%;
  }

  td {
    padding: 1rem 2rem;
  }

  td a {
    transform: scale(0.9);
    padding: 0.3rem 0.6rem;
    text-align: center;
  }
}
