* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", monospace;
  background-color: gray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 50px;
}
#main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 420px;
}
.container {
  width: 420px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.333);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-top: 30px;
  position: relative;
}
#inputEl {
  width: 300px;
  height: 30px;
  border: none;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.333);
  color: white;
  font-size: 25px;
}

#search {
  width: 50px;
  height: 50px;
  font-size: 30px;
  background: none;
  color: white;
  border: none;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.detials {
  margin-bottom: 30px;
}

.min-max {
  position: absolute;
  top: 25%;
  right: 6%;
  display: flex;
  flex-direction: column;
}
