/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Body */
body {
  font-family: Roboto, Arial, Verdana, sans-serif;
}

/* Main */
main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

/* Phone Container */

.phone-container {
  
  width: 260px;
  height: 460px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 15px solid #000000;
  background-color: #d1d1d1;
}

label {
  margin: 10px auto;
  
}

input {
  font-family: inherit;
  display: block;
  margin: 10px auto;
  padding: 5px;
  text-align: center;
  width: 90%;
  height: 42px;
  font-size: 16px;
  border: 1px solid #000000;
}

button {
  font-family: inherit;
  cursor: pointer;
  width: 100px;
  margin: 10px;
  font-size: 18px;
}

#check-btn {
  background-color: #aeb3ff;
}

#clear-btn {
  background-color: #fffaae; 
}

/* Phone Footer */
.phone-footer {
  background-color: #d1d1d1;
}

/* Results */
#results-div {
  
  height: 200px;
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  margin: 10px 0;
}