* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  padding: 0 5%;
  font-family: Arial, Helvetica, sans-serif;
}
.input-info {
  margin-bottom: 20px;
}
.results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

textarea {
  width: 100%;
}

.results p {
  max-height: 100px;
  overflow: hidden;
  margin-bottom: 5px;
}
.note {
  border: 1px solid black;
  padding: 10px;
  box-shadow: 2px 2px 10px 1px gray;
  transition: all 500ms ease;
  border-radius: 10px;
}
.note:hover {
  box-shadow: 2px 2px 10px 5px black;
}
button {
  margin-right: 10px;
}

/* modal css */

.modal-container {
  top: 0;
  left: 0;
  position: fixed;
  min-height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 200ms ease;
}
.modal-container.display {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: 600px;
  max-width: 95%;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 1px black;
  transition: all 500ms ease;
}
