/*! Copyright © 2026 Tiffany Schuman, doing business as Vynxcode All Rights Reserved. 
Licensed under the Vynxcode Proprietary License. 
See LICENSE for details */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.4s ease, color 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  background: linear-gradient(45deg, rgb(156, 2, 199), rgb(149, 76, 228, 0.4) 40% 70%, rgb(156, 2, 199));
}

.project-header {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: 'share tech mono', sans-serif;
  text-shadow: 0 10px 15px rgb(0, 0, 0, 0.7);
}

.project-header h1 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: #000;
}

.project-header p {
  font-size: 1.2rem;
  color: #333;
}

.section-1 {
  width: 100%;
  max-width: 450px;
  min-width: 300px;
  margin: 1rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'share tech mono', sans-serif;
  border-radius: 2rem;
  color: #000;
  box-shadow: 0 0 10px #000;
  background-color: rgb(149, 76, 228, 0.4);
}

.section-1 h2 {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

.section-1 h3 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

.section-2 {
  width: 100%;
  max-width: 450px;
  min-width: 300px;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: 'share tech mono', sans-serif;
  color: #000;
}

.section-2 input {
  width: 100%;
  margin: 1rem auto;
  padding: 0.5rem 0.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #000;
  background-color: rgb(106, 106, 206, 0.5);
}

.section-2 input::placeholder {
  font-family: 'share tech mono', sans-serif;
  font-size: 1rem;
  color: rgb(255, 255, 255, 0.6);
}

.section-2 button {
  margin: 0 auto;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 5rem;
  border: 1px solid #000;
  color: #000;
  background-color: rgb(106, 106, 206, 0.5);
}

.section-2 button:hover {
  transform: scale(0.97);
  background-color: rgb(106, 106, 206, 0.7);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.section-2 button:focus {
  transform: scale(0.97);
  outline-offset: 5px;
  outline: 1px solid #000;
  background-color: rgb(106, 106, 206, 0.7);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.result {
  height: 20px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
}

.section-3 {
  width: 100%;
  max-width: 320px;
  margin: 2rem auto 0.5rem auto;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'share tech mono', sans-serif;
  border-radius: 1rem;
  color: #000;
  box-shadow: 0 0 10px #000;
  background-color: rgb(106, 106, 206, 0.3);
}

.help-icon {
  padding-right: 0.5rem;
  font-size: 1.5rem;
  vertical-align: middle;
}

.section-3 h3 {
  margin: 0.5rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.section-3 p {
  margin: 0.5rem 2rem 0.5rem 4.5rem;
  font-size: 0.9rem;
  font-weight: 400;
}

footer {
  margin: 2rem auto;
  text-shadow: 0 0 5px #000000;
  color: #000000;
}

.footer-bottom-link {
  text-decoration: none;
  color: #000000;
}

.footer-bottom-link:hover {
  text-shadow: 0 0 5px #000000;
  color:#5D0176;
}

@media screen and (max-width: 600px) {
  .project-header h1 {
    font-size: 1.8rem;
  }

  .project-header p {
    padding: 0.5rem 0.8rem 0 0.8rem;
    font-size: 1rem;
  }

  .section-1 h2 {
    font-size: 1.5rem;
  }

  .section-1 h3 {
    font-size: 0.9rem;
  }

  .section-2 input::placeholder {
    font-size: 0.8rem;
  }
}