.color-primary {
  background-color: #1C3738;
}

.color-secondary {
  background-color: #777DA7;
}

.color-danger {
  background-color: firebrick;
}

.color-success {
  background-color: #B9F18C;
}


body {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  color: #F4FFF8;
}

#main-container {
  width: 70%;
  height: 500px;
  margin: 0 auto;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sub-container {
  height: 70%;
  width: 70%;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.difficulty-button {
  padding: 20px 60px;
  border-radius: 15px;
  border: none;
  color: white;
  background-color: purple;
  font-size: 20px;
}

#guess-window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
}

#result-window {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
}
