/* Color Variables */
/* Global Reset */
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Responsive Images */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Body Styles */
body {
  min-height: 100vh;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header Styles */
.ping-logo {
  margin-top: 4rem;
  padding: 1rem;
}

/* Section Styles */
section h1 {
  font-weight: 700;
  color: hsl(209, 33%, 12%);
  margin: 1rem 0;
}

.txt-render {
  font-weight: 100;
  color: hsl(0, 0%, 59%);
  font-size: inherit;
}

.sub-txt {
  font-size: 1rem;
  color: hsl(209, 33%, 12%);
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Form Styles */
fieldset {
  border: none;
  display: flex;
  justify-content: center;
}

form {
  margin: 1rem 0 2rem 0;
}

input {
  padding-left: 1rem;
}

input::-moz-placeholder {
  color: hsl(0, 0%, 59%);
  font-weight: 100;
  opacity: 0.6;
}

input::placeholder {
  color: hsl(0, 0%, 59%);
  font-weight: 100;
  opacity: 0.6;
}

.email {
  border: 1px solid hsl(0, 0%, 59%);
  border-radius: 2rem;
  width: 20rem;
  height: 2.75rem;
}

.invalid {
  color: hsl(354, 100%, 66%);
  display: block;
  font-Size: 0.8em;
  text-Align: start;
  padding-left: 0.9em;
}

/* Submit Button Styles */
.submit-btn {
  height: 2.75rem;
  border-radius: 2rem;
  width: 8rem;
  border: none;
  background-color: hsl(223, 87%, 63%);
  font-weight: 700;
  color: white;
  margin-left: 1rem;
  transition: all 0.5s;
}
.submit-btn:hover {
  opacity: 0.8;
  cursor: pointer;
  transform: scale(1.05);
}

/* Dashboard Image Styles */
.dashboard {
  width: 50%;
  margin: auto;
}

/* Social Icons Styles */
.social-icons {
  padding: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a {
  border: 1px solid hsl(0, 0%, 59%);
  border-radius: 50%;
  padding: 0.5rem;
  aspect-ratio: 1/1;
  color: hsl(223, 87%, 63%) !important;
  background-color: white;
  transition: all 0.5s;
}
.social-icons a:hover {
  color: white !important;
  background-color: hsl(223, 87%, 63%) !important;
  transform: rotateX(360deg);
}

/* Footer Styles */
.copyright {
  color: gray;
  font-size: 0.75rem;
  margin: 1rem;
}

/* Attribution Styles */
.attribution {
  font-size: 11px;
  text-align: center;
  font-weight: 300;
}
.attribution a {
  font-weight: 700;
  color: hsl(228, 45%, 44%);
}

@media (max-width: 490px) {
  fieldset {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem;
  }
  .dashboard {
    width: 80%;
  }
}/*# sourceMappingURL=styles.css.map */