html,
body {
  min-height: 100vh;
  overflow: auto;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: white;
  font-family: Poppins, sans-serif;
  background-color: #1d1e28;
}

.buttons-container {
  display: flex;
  align-self: center;
}

.button {
  margin: 10px 2px;
  padding: 15px 48px;
  color: white;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

.discord-login-btn {
  background-color: #7289da;
}

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.important-text {
  color: #24c21f;
}

.textarea-container {
  text-align: right;
}

.review {
  width: 500px;
  height: 250px;
  background-color: #252530;
  color: white;
  border-radius: 5px;
  resize: none;
}

.stars-wrapper {
  display: flex;
  justify-content: center;
  margin: 10px;
}

.submit {
  margin: auto;
  padding: 10px;
  color: white;
  background-color: #252530;
  border: 2px solid #33333f;
  border-radius: 4px;
  cursor: pointer;
}

.information-message {
  display: block;
}

.login-needed-container {
  display: flex;
  flex-direction: column;
}

@media (orientation: portrait) {
  .review {
    width: 75vw;
  }

  .information-message {
    width: 75vw;
  }
}
