@import url("https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dongle:wght@400;700&family=Lobster&family=Luxurious+Roman&family=Merriweather:wght@400;700&family=Moon+Dance&family=Neonderthaw&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,600&family=Roboto+Mono:wght@400;500;600;700&family=Roboto:wght@900&family=Source+Code+Pro:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=Titillium+Web:wght@400;600;700&display=swap");

@font-face {
  font-family: "La Belle Aurore";
  src: url("/assets/fonts/LaBelleAurore.woff2") format("woff2"),
    url("/assets/fonts/LaBelleAurore.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Coolvetica";
  src: url("/assets/fonts/CoolveticaRg-Regular.woff2") format("woff2"),
    url("/assets/fonts/CoolveticaRg-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 11px;
  background: #212121;
}
::-webkit-scrollbar-thumb {
  width: 100%;
  background: #38393f;
  border-radius: 2rem;
}
::-webkit-scrollbar-thumb:hover {
  background: blue;
}
::selection {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; /* Likely future */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Coolvetica", sans-serif;
  color: rgb(255, 255, 255);
  background: #212121;
  /* background-repeat: no-repeat;
  background-size: 100% auto; */
  overflow-x: hidden;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

li {
  list-style: none;
}

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

.container {
  margin: auto 10rem;
}

.special-link {
  font-size: 1.2rem;
}

#main-header {
  text-align: center;
  margin: 3rem;
  font-size: 7rem;
}

#discription {
  letter-spacing: 2px;
  text-align: center;
}

.p-item p {
  font-size: 1rem;
}

.p-item:last-child {
  color: skyblue;
}

#name-input {
  width: 50%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 3px solid pink;
  border-radius: 7px;
  font-size: 20px;
}

#name-input:focus {
  outline: none;
  border: 3px solid lime;
  transition: all 1s ease-in-out;
}

.inputs {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

::placeholder {
  font-family: "Poppins", sans-serif;
  margin-left: 10px;
  font-size: 18px;
}

.submit-input {
  cursor: pointer;
  width: 20%;
  margin: 10px;
  padding: 1rem 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  font-weight: 500;
  font-family: "Coolvetica", sans-serif;
  box-shadow: 0 0 20px #eee;
  border-radius: 8px;
  display: block;
  background-image: linear-gradient(
    to right,
    #000000 0%,
    #53346d 51%,
    #000000 100%
  );
}

.submit-input:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

#relation{
  text-align: center;
  margin: auto;
}

.back{
  text-align: center;
  margin: auto;
  margin-top: 25% ;
}

.spectail-ch{
  text-align: center;
  margin: auto;
  font-size: 3rem;
}

.btn{
  text-align: center;
  margin: 4rem auto;
}


@media screen and (max-width: 1024px) {
  .container {
    margin: auto 8rem;
  }
  #main-header {
    margin: 2rem;
    font-size: 6rem;
  }
  .p-item p {
    font-size: 0.8rem;
  }
  #name-input {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-radius: 5px;
  }
  .submit-input {
    margin: 5px;
    padding: 0.9rem 0.9rem;
    border-radius: 6px;
  }
  .submit-input {
    text-align: center;
    margin: auto;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .container {
    margin: auto 3.5rem;
  }
  #discription {
    letter-spacing: 2px;
    font-size: 2rem;
    text-align: center;
  }
  #main-header {
    margin: 5.4rem;
    font-size: 6.1rem;
  }
  li {
    font-size: 1.5rem;
    list-style: none;
  }
  .p-item p {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  #name-input {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    width: 90%;
    margin-top: 2rem;
  }
  .submit-input {
    padding: 1.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    margin: auto;
    margin-top: 1rem;
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    margin: auto;
  }
  #discription {
    letter-spacing: 1px;
    text-align: center;
    font-size: 1.88rem;
  }
  #main-header {
    font-size: 5rem;
    margin: 4.5rem;
  }
  .p-item p{
    font-size: 1.3rem;
    margin-top: 1.5rem
  }
  .p-item {
    font-size: 1.3rem;
    margin-top: 0rem;
  }
  #name-input {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    width: 85%;
    margin-top: 1.5rem;
  }
  .inputs {
    flex-direction: column;
  }
  .submit-input {
    width: 40%;
  }
}

@media screen and (max-width: 540px) {
  #main-header {
    font-size: 4rem;
    margin: 2rem;
  }
  #discription {
    letter-spacing: 1px;
    text-align: center;
    font-size: 1.185rem;
  }
  .p-item p {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .p-item {
    font-size: 1rem;
  }
  #name-input {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    border-radius: 4px;
    margin-bottom: 0.2rem;
    width: 85%;
    margin-top: 0.1rem;
  }
  .submit-input {
    width: 40%;
    padding: 1rem;
  }
}

@media screen and (max-width: 420px) {
  #main-header {
    font-size: 4.1rem;
    margin: 2rem;
  }
  #discription {
    letter-spacing: 1.8px;
    font-size: 1.19rem;
  }
  .p-item p {
    font-size: 1.2rem;
    margin-top: .8rem;
  }
  .p-item {
    font-size: 1rem;
  }
}

@media screen and (max-width: 393px){
  #main-header {
    font-size: 3.5rem;
    margin: 1.5rem;
  }
  .p-item p {
    font-size: 1rem;
    margin-top: .8rem;
  }
  .p-item {
    font-size: 1rem;
  }
  #name-input {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    border-radius: 4px;
    margin-bottom: 0.2rem;
    width: 85%;
    margin-top: 0.1rem;
  }
  .submit-input {
    width: 40%;
    padding: 1rem;
  }
}

@media screen and (max-width: 375px){
  #main-header {
    font-size: 3.5rem;
    margin: 1.5rem;
  }
  .p-item p {
    font-size: 0.8rem;
    margin-top: 0.6rem;
  }
  .p-item {
    font-size: 0.8rem;
  }
  #name-input {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 4px;
    margin-bottom: 0rem;
    width: 90%;
    margin-top: 0rem;
  }
  .submit-input {
    width: 45%;
    padding: 0.9rem;
  }
}

@media screen and (max-width: 280px){
  #discription {
    letter-spacing: 1px;
    text-align: center;
    margin-left: -2.3rem;
    font-size: 0.8rem;
  }
  #main-header {
    font-size: 3rem;
    margin: 1rem;
  }
  .p-item p {
    font-size: 0.8rem;
    margin-top: 0.6rem;
  }
  .p-item {
    font-size: 0.8rem;
  }
  #name-input {
    margin-left: -0.5rem;
    width: 90%;
  }
  .submit-input {
    width: 55%;
    padding: 0.7rem;
    margin-left: 3.5rem;
  }
}