* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111;
  color: #eee;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.home h1 {
  font-family: "Comfortaa", cursive;
  font-weight: normal;
  font-size: 3em;
  margin-top: 20vh;
}

section.home {
  min-height: 80vh;
}
.home .tagline {
  font-size: 14px;
  color: #888;
  font-family: "Roboto", sans-serif;
  margin-top: -2vh;
  margin-bottom: 10vh;
}

.form input {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
}

.form input:focus {
  outline: none;
}

/* Style the submit button */
.form button {
  float: left;
  width: 20%;
  padding: 10px;
  background: orangered;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

.form button:hover {
  background: #0b7dda;
}

/* Clear floats */
.form::after {
  content: "";
  clear: both;
  display: table;
}

.form {
  width: 90%;
  margin: auto;
}

.status {
  color: #777;
  font-size: 14px;
  margin-top: 15vh;
}

.result .details {
  background-color: #222;
  width: 94%;
  margin: auto;
  text-align: center;
  padding: 0.5em;
  border-radius: 0.3em;
  margin-bottom: 4vh;
}

.result .details p {
  margin-top: 0.7em;
}

.result .details span {
  color: #aaa;
  font-family: "Roboto", sans-serif;
}
.img-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

img {
  margin: 5px;
  border-radius: 0.4em;
  box-shadow: #000 1px 1px 4px, #565656 -1px -1px 4px;
}

img:hover {
  transform: scale(1.1);
}

h3 {
  text-align: center;
  margin-left: 1.2em;
  font-weight: normal;
  margin-top: 3vh;
  margin-bottom: 1vh;
}
.high-ql {
  max-width: 90%;
}

.home {
  max-width: 650px;
  margin: auto;
}

a {
  color: lime;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  #result > div {
    overflow: scroll;
  }
  h3,
  .result .details {
    text-align: left;
  }
}

footer div {
  background-color: #242424;
  padding: 1em 0em;
  box-shadow: -2px 0px 6px #000;
}

/* font-family: 'Comfortaa', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif; */
