* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color:  brown;
}
.container {
  background-color: rgba(123, 33, 129, 0.487);
  width: 100vw;
  font-size: 16px;
  max-width: 32em;
  padding: 3.5em 2.5em;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 0.6em;
  box-shadow: 0 1.5em 3em darkslategrey;
}
.search-container {
  display: flex;
  justify-content: space-between;
}
.container input,
.container button {
  font-size: 1.3em;
  outline: none;
  border: none;
  border-radius: 0.7em;
}
.container input {
  width: 33%;
  border: 3px solid rosybrown;
  padding: 1em;
}
.container button {
  width: 35%;
  background-color: palevioletred;
  color: black;
  font-weight: 500;
  padding: 0.7em;
  cursor: pointer;
}
#ran-fact-btn {
  width: 100%;
  margin-top: 1.3em;
}
.fact {
  background-color: lightcyan;
  box-shadow: 0 0 1.2em rgba(0, 4, 52, 0.1);
  margin: 3em auto 0 auto;
  padding: 2.8em 1.8em;
  border-radius: 0.6em;
  border: none;
  border-bottom: 0.5em solid palevioletred;
  display: none;
}
.fact h2 {
  font-size: 3.1em;
  color: #181a34;
}
.fact p {
  font-size: 1.3em;
  font-weight: 400;
  color: #50526b;
  line-height: 1.8em;
  text-align: justify;
  margin-top: 0.8em;
}
p.msg {
  text-align: center;
  font-weight: 500;
  color: black;
}