* {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  font-size: 24px;
  background: #e9e6f0;
}

.main-grid {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr repeat(2, 400px) 1fr;
  grid-auto-rows: min-content;
}

.task-header {
  grid-column: 2 / 4;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.desc {
  width: 100%;
}
.desc-button {
  background: #3b1b5b;
  color: white;
  font-size: 30px;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.desc-button:hover {
  background: #2b1442;
  cursor: pointer;
}
.desc-info {
  background: #cecae3;
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: none;
}
.desc-info ul {
  margin-left: 40px;
}

.rebus-wrapper {
  grid-column: 2 / 4;
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.sound {
  width: 65%;
  text-align: center;
  margin-bottom: 30px;
}

.answer-text {
  font-size: inherit;
  padding: 10px;
}

.answer-button {
  font-size: inherit;
  height: 100%;
  padding: 0 20px;
  background: #3b1b5b;
  color: white;
  outline: none;
  border: none;
}
.answer-button:hover {
  background: #2b1442;
  cursor: pointer;
}
