@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;600;700&display=swap");

:root {
  --body-font: "Libre Franklin", sans-serif;
  --blue: hsl(223, 87%, 63%);
  --pale-blue: hsl(223, 100%, 88%);
  --light-red: hsl(354, 100%, 66%);
  --gray: hsl(0, 0%, 59%);
  --very-dark-blue: hsl(209, 33%, 12%);
  --white: white;
  --box-shadow: 1px 0px 10px 1px rgba(0, 0, 0, 0.31);
}

* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 20px;
}

body {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
  box-sizing: border-box;
  font-family: var(--body-font);
}
body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

/* Main Container */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.3rem;
}
/* Header Logo */
.header-logo {
  background-image: url("images/Logo-ASTD.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 30rem;
  height: 30rem;
}
/* Title Section */
.title-section {
  margin-top: -0.7rem;
  line-height: 2.8rem;
  text-align: center;
}

.title-section h1 {
  font-size: 2.3rem;
  letter-spacing: 1px;
  font-weight: 300;
  color: var(--gray);
}

.soon {
  font-weight: 700;
  color: initial;
}

.title-info {
  color: var(--very-dark-blue);
}

/* Footer */
footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
    bottom: 0;
  text-align: center;
  margin-bottom: 10rem;
  margin-top: -17rem;
  gap: 1rem;
}



.copyright {
  font-size: 0.6rem;
  color: var(--gray);
  margin-bottom: -1rem;
}

@media (hover: hover) {
  .social-media a:hover {
    background-color: var(--blue);
    transition: all ease-in-out 0.3s;
  }
  .social-media a:hover .fa-brands {
    color: var(--white);
    transition: all ease-in-out 0.3s;
  }
  .input-section button:hover {
    background-color: var(--pale-blue);
    transition: all ease-in-out 0.3s;
  }
}

@media screen and (max-width: 900px) {
  .input-section {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 2rem;
  }
  .input-section input {
    grid-column: initial;
  }

  .submit-btn {
    padding: 0.9rem;
  }

  .statistics-img {
    background-size: 70%;
    width: 25rem;
  }
}
@media screen and (max-width: 701px) {
  .input-section {
    gap: 3.3rem;
  }
}

@media screen and (max-width: 500px) {
  .statistics-img {
    background-size: 80%;
    width: 20rem;
  }
}
