

/* CSS for I N N */

#url-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

#url-input {
  width: 400px;
  height: 50px;
  font-size: 18px;
  padding: 5px;
  margin-right: 10px;
  border: 1px solid  #328cc1;
  border-radius: 5px;
}

.smalltext{
  font-size: calc(5px + 0.75vw);
}

#display-box {
  width: 500px;
  height: 100px;
  border: 2px solid #0b3c5d;
  overflow: hidden;
  margin: 0 auto;
  text-align: ;eft
  line-height: 100px;
  font-size: 18px;
  background-color: lightgrey; /*white*/
}

button {
  background-color: #0b3c5d;
  border: none;
  border-radius: 10px;
  border-color: #328cc1;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: calc(5px + 0.7vw);
}

  button:hover {
  /* background-color: #328cc1; light blue */
  background-color: #d9b310;
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

  button:focus {
  outline: dashed #328cc1;
}

  button:active {
  transform: translateY(2px);
}



