:root {

    --font: font-family: "Oswald", sans-serif;
    --color-gray: #6b6b6b;
    --color-black: #1f2026;
    --color-white: color #b2b2b2;
    --color-Yellow: #fca817;
  }
  
  * {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  ::-webkit-scrollbar {
    width: 1px;
  }
  .titleForm{
    text-align: center;
    background-color: #f4f4f6;
    padding:5px 20px;
    border-radius: 30px;
    border: 2px solid black;
    filter: drop-shadow(2px 2px 5px black);
    
  }
  .cntForm{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fca817;
    font-family: "Oswald", sans-serif;
  }
  #thanksBox{
    box-sizing: border-box;
    padding: 10px;
    position: absolute;
    width: 40%;
    height: 50%;
    z-index: 110;
    background-color: #f4f4f6;
    border: 2px solid #000000; 
    filter: drop-shadow(2px 2px 5px black);
    color: #1f2026;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-family: "Oswald", sans-serif;
    border-radius: 30px;
    img{
      width: 30%;
    }
    p{
      letter-spacing: 2px;
      word-spacing: 2px;
      font-size: 2vw;
      text-align: center;
    }
  }
  .cntElement{  
    opacity: 1; 
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .formContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
  }
  .linkNav {
    width: 120px;
    height: 40px;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    transition: 0.5s;
    color: #f4f4f6;
  }
  .linkNav:before, .linkNav:after {
    position: absolute;
    background: rgb(0, 0, 0);
    z-index: -1;
    transition: 0.5s;
    content: '';
  }
  .item{
    width: clamp(120px, 90vw, 420px);
    height: 2.5rem;
    resize: none;
    border-radius: 20px;
    padding: 8px;
    font-size: 2vw;
    border-color: #1f2026;
    filter: drop-shadow(2px 2px 5px black);
    outline: none;
  }
  .textArea{
    height: calc(100% + 20px);
  }
  .sizelab{
    font-size: 3vw;
    margin-right: 5px;
  }
  .linkNav:before {
    height: 40px;
    width: 120px;
  }

  .linkNav:after {
    width: 120px;
    height: 40px;
  }
  .button{
    margin-top: 25px;
    background-color: black;
    height: 50px;
    width: 150px;
    border-radius: 20px;
    border-color: var(--color-Yellow);
    border-width: 4px;
    color: #f4f4f6;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    animation: buttonlgt 2s ease-in-out;
    animation-iteration-count: infinite;
  }
  .noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .linkNav:hover::before {
    width: 0px;
    background: black;
    
  }
  .linkNav:hover::after {
    height: 0px;
    background: black;
  
  }
  .linkNav:hover {
    background: var(--color-Yellow);
    border-radius: 30px;
    color: #1f2026;
  }
  
  @keyframes buttonlgt {
    0%   {border-color: #fca817;}
    50%  {border-color: #fbff00;
          box-shadow: 0px 0px 15px #fbff00;
          }
    100% {border-color: #fca817;}
        }