.body-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 600px;
    justify-content: center;
    text-align: center;
}

.start-game {
    font-size: 25px;
}

h1 {
    font-size: 2rem;
}

h3 {
    text-align: center;
}

.author {
   margin: 0;
   font-size: 1.1rem;
}

.like-form {
    display: flex;
    flex-direction: column;
}

.like-form button {
    margin-bottom: 10px;
}

.quote-article {
    border: 4mm ridge rgba(211, 220, 50, 0.6);
    padding: 10px;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
}

.movement-description {
    text-align: center;
    font-size: 1.5rem;
}

br {
    display: block;
    margin: 20px 0;
    content: " ";
}

.ans_loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #ff8b00;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}