@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Tilt+Neon&display=swap");
  
  img {
    width: 100%;
    pointer-events: none;
    user-select: none;
  }
  .home {
    display: grid;
    grid-template-columns: 45% 50%;
    place-items: center;
    gap: 50px;
    
/*  background: radial-gradient(
      circle,
      rgba(67, 69, 112, 1) 3%,
      rgba(35, 36, 57, 1) 60%
    );
*/
    overflow: hidden;
    padding: 130px 80px;
  }
  
  .description {
    color: #999999;
    padding: 0 50px;
  }
  
  .description > h1 {
    font-family: "Tilt Neon", sans-serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 30px;
/*  color: rgba(255, 255, 255, 1.0); */
  }
  
  .gradient-text {
    font-family: "Tilt Neon", sans-serif;
    background-image: linear-gradient(
      90deg,
      rgb(118, 167, 63) 0%,
      rgb(51, 143, 118) 40%,
      rgb(55, 141, 167) 50%,
      rgb(117, 152, 242) 70%,
      rgb(144, 118, 236) 100%
    );
    color: transparent;
    background-size: contain;
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .description > p {
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  #form {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  input {
    padding-inline-end: 10px;
    padding-inline-start: 10px;
    background-color: transparent;
    outline: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 191, 255, 1.0);
    margin-right: 10px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
  }
  
  input::placeholder {
    color: rgba(0, 191, 255, 0.8);
    font-weight: 300;
  }
  
  input[type="email"] {
    color: rgba(0, 191, 255, 0.8);
    font-weight: 200;
    font-size: 1rem;
  }
  
  input[type="email"]:focus {
    border: transparent;
    outline: 1px dotted rgba(0, 191, 255, 0.8, 0.5);
    outline-offset: -3px;
  }
  
  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    max-width: max-content;
    background: linear-gradient(
      90deg,
      rgb(118, 167, 63) 0%,
      rgb(51, 143, 118) 40%,
      rgb(55, 141, 167) 50%,
      rgb(117, 152, 242) 70%,
      rgb(144, 118, 236) 100%
    );
    background-size: 200%;
    background-position: left;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    border: 0;
    padding: 12px 16px;
    border-radius: 5px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5),
      inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in;
  }
  
  .btn:is(:hover, :focus-visible) {
    background-position: right;
  }
  
  .users-color-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }
  .item-hero {
    max-width: 200px;
    aspect-ratio: 1/1;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
      inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s linear 1 forwards;
    animation-delay: calc(0.2s * var(--i));
    opacity: 0;
  }
  
  .item-hero:nth-child(1) {
    background-color: #67d7e1;
    border-radius: 50% 50% 0 50%;
  }
  
  .item-hero:nth-child(2) {
    border-radius: 50% 50% 0 0;
  }
  
  .item-hero:nth-child(3) {
    background-color: #6cc164;
    border-radius: 50%;
  }
  
  .item-hero:nth-child(4) {
    border-radius: 0 0 0 50%;
  }
  
  .item-hero:nth-child(5) {
    border-radius: 0 50% 50% 0;
  }
  
  .item-hero:nth-child(6) {
    background-color: #26abff;
    border-radius: 0 50% 50% 50%;
  }
  
  .item-hero:nth-child(7) {
    border-radius: 50% 50% 0 50%;
  }
  
  .item-hero:nth-child(8) {
    background-color: #fe7519;
    border-radius: 50% 0 0 50%;
  }
  
  .item-hero:nth-child(9) {
    background-color: #f5bec3;
    border-radius: 0 50% 50% 0;
  }
  
  .item-hero:nth-child(10) {
    border-radius: 50%;
  }
  
  .item-hero:nth-child(11) {
    background-color: #fcd659;
    border-radius: 50% 0 50% 50%;
  }
  
  .item-hero:nth-child(12) {
    border-radius: 50% 0 0 0;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  @media (max-width: 1215px) {
    .description > p {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 1015px) {
    .home {
      grid-template-columns: 45% 50%;
      gap: 50px;
      padding: 140px 50px;
    }
    
    .description > p {
      font-size: 1rem;
    }
  
    .btn {
      padding: 8px 12px;
    }
  
    .btn-grad {
      padding: 8px 12px;
    }
  }
  
  @media (max-width: 865px) {
    .home {
      grid-template-columns: 45% 50%;
      gap: 60px;
      padding: 130px 70px;
    }
  }
  
  @media (max-width: 815px) {
    .home {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 1fr;
      grid-template-areas:
        "userscolorcontainer"
        "description";
      gap: 30px;
      padding: 90px 80px 70px;
    }
  
    .users-color-container {
      grid-area: userscolorcontainer;
    }
  
    .description {
      grid-area: description;
      padding: 0;
      text-align: center;
    }
  
    .description > p {
      font-size: 1.1rem;
    }
  
    #form {
      justify-content: center;
    }
  }
  
  @media (max-width: 815px) {
    .description > p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 460px) {
     .home {
      gap: 0;
      padding: 30px 40px;
    }
    
    #form {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 20px;
    }
    
    input[type="email"]:focus {
      outline-offset: 6px;
    }
  }