@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #7d7d7d;
  color: #0a0a23;
}

main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 10px;
}

h1 {
  color: white;
  width: 100%;
  max-width: 480px;
  margin: 15px 0;
  text-align: center;
}

.phone-container {
  position: relative;
  background-color: #5c5c5c;
  color: #fff;
  width: 250px;
  height: 460px;
  margin: 30px auto;
  border-radius: 25px;
  border: 5px solid #c0c0c0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-background {
  background-color: black;
  margin-top: 10px;
  width: 30%;
  height: 25px;
  border-radius: 25px;
}

.phone-camera {
  background-color: #1f1f1f;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 7px auto;
}

label {
  margin: 10px auto 5px;
}

#user-input {
  display: block;
  margin: 10px auto;
  padding: 5px;
  border: none;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  height: 42px;
  font-size: 16px;
  background-color: #b8b8b8;
}

#user-input::placeholder {
  color: black;
  opacity: 0.5;
  font-weight: bold;
}

.phone-footer {
  background-color: #5c5c5c;
  border-radius: 25px;
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-styles {
  cursor: pointer;
  width: 100px;
  margin: 0 15px 15px 15px;
  color: white;
  font-size: 18px;
  background-color: #363636;
  border: none;
  border-radius: 15px;
  padding: 5px;
}

#results-div {
  overflow-y: auto;
  height: 265px;
  width: 100%;
}

.results-text {
  font-size: 1.2rem;
  padding: 5px;
  text-align: center;
  margin: 10px 0;
}
