body {
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif!important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(186, 215, 242);
}

main {
  border-radius: 10px;
  background-color: rgb(108, 145, 202);
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: white;
}

#task {
  padding-bottom: 10px;
}

.btn-shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border: none;
}

pre {
  font-family: "Nunito Sans", sans-serif!important;
  font-size: 1.1rem;
  white-space: pre-wrap;
}

.btn-variant {
  background-color: rgba(155 30 33);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 2px solid white;
  color: white;
  width: 90%;
  /*height: 50px;*/
  /*border: none;*/
  margin-bottom: 10px;
  font-size: 1rem;
}

.btn-variant:hover {
  background-color: #175e65;
}


#question-text {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 77, 89, .8);
  border-radius: 10px;
  font-weight: bold;
}

#already-answered-p, #exchange {
  padding: 5px;
  background-color: rgb(221, 151, 136);
  border-radius: 10px;
  border: 2px solid white;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px!important;
}
#already-answered-p::before{
  content: '👌'
}