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

body {
  background-color: #E2E2E2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

p {
  color: #3F4658;
}

.main-content {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 540px;
  max-width: 540px;
}

.main-tittle {
  color: #8B5CF6;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: bolder;
}

.flashcards {
  width: 272px;
  height: 240px;
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #3F4658;
  cursor: pointer;
}

.next-button,
.prev-button {
  width: 124px;
  height: 40px;
  border-radius: 10px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: #6A3FCB;
  font-weight: bold;
  margin: 5px;
}

.next-button:hover,
.prev-button:hover {
  background-color: #8B5CF6;
}

.buttons {
  display: flex;
  gap: 10px;
}
