.exams-cards {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
}

.exam-card {
  width: 35%;
  padding: 1rem;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  border-radius: 25px;
}

.exam-title {
  padding: 1rem;
  width: 85%;
  text-align: center;
}

.exam-title h2 {
  padding: 1rem;
  overflow-wrap: break-word;
}

.edit-delete-exam {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 535px) {
  .exam-card {
    width: 80%;
  }
}
