@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body {
  width: 100vw;
  height: 100vh;
  background: lightgray;
  display: flex;
  justify-content: center;
  align-items: top;
}
h4 {
  margin-top: 1rem;
}
.container {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 90vw;
  max-width: 600px;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

input {
  border-radius: 0.5rem;
  padding: 0.5rem;
  border: 2px solid gray;
  margin: 0.5rem 0;
}

.range {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.range p {
  margin-left: 1rem;
}

.step2 {
  display: none;
}

.summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.good {
  border: 2px solid green;
  background: rgba(0, 255, 0, 0.1);
}

.bad {
  border: 2px solid red;
  background: rgba(255, 0, 0, 0.1);
}
.verbs {
  display: flex;
  flex-direction: column;
}

.progress {
  margin-top: 1rem;
}

#pl {
  border-color: blueviolet;
}

.columns {
  display: flex;
  justify-content: space-between;
}
