@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Libre Franklin", sans-serif;
}

body {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

main {
  max-width: 1000px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .logo-img {
  margin-top: 2em;
}
main h1 {
  font-size: 2.3em;
  color: hsl(0, 0%, 59%);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 3rem 0 1rem 0;
}
main h1 span {
  color: black;
  font-weight: 700;
  letter-spacing: 0.02em;
}
main h2 {
  font-size: 1.2em;
  font-weight: 400;
  color: hsl(209, 33%, 12%);
}
main .form-div {
  width: 100%;
  margin: 2em 0 4em 0;
}
main .form-div form {
  display: grid;
  grid-template-columns: 1fr 10em;
  gap: 1em;
}
main .form-div .round {
  padding: 1em 2em;
  border-radius: 2em;
}
main .form-div input {
  border: 1px solid hsl(223, 100%, 88%);
}
main .form-div input::-moz-placeholder {
  color: hsl(223, 100%, 88%);
}
main .form-div input::placeholder {
  color: hsl(223, 100%, 88%);
}
main .form-div button {
  border: none;
  color: white;
  background-color: hsl(223, 87%, 63%);
  border: 1px solid hsl(223, 87%, 63%);
  box-shadow: 0px 6px 10px hsla(223, 87%, 63%, 0.459);
  cursor: pointer;
  transition: 0.2s ease;
}
main .form-div button:hover {
  background-color: white;
  text-decoration: underline;
  color: hsl(223, 87%, 63%);
}
main .form-div .error-msg {
  text-align: left;
  margin-left: 2em;
  font-size: 0.9em;
  color: hsl(354, 100%, 66%);
  display: none;
}

.site-img {
  max-width: 650px;
}

footer {
  text-align: center;
  font-size: 0.8em;
  color: hsl(0, 0%, 59%);
  margin-top: 4em;
}
footer .social-icons {
  font-size: 18px;
  color: hsl(223, 87%, 63%);
  display: flex;
  justify-content: center;
  margin: 1em;
  gap: 0.5em;
  flex-direction: row;
}
footer .social-icons div {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(128, 128, 128, 0.26);
  min-width: 1.9em;
  min-height: 1.9em;
  border-radius: 50%;
  transition: 0.2s ease;
}
footer .social-icons div:hover {
  color: white;
  background-color: hsl(223, 87%, 63%);
  cursor: pointer;
}
footer a {
  text-decoration: none;
  color: hsl(223, 87%, 63%);
}
footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 700px) {
  main h1 {
    font-size: 1.6em;
  }
  main h2 {
    font-size: 1em;
  }
  main .form-div {
    width: 80%;
    margin: 2em 2em 4em 2em;
  }
  main .form-div form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
  main .error-msg {
    grid-row-start: 2;
  }
  .site-img {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */