@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@700&display=swap');
body {
    margin: 0;
    text-align: center;
    display:grid;
    /* justify-content: center; */
    align-items: center;
    min-height: 100vh;
    font-family: 'Fira Code', monospace;
    background-image: url("1.png");
      background-color: #010320;
  background-size: contain; 
  background-repeat: no-repeat;
    background-size: contain; 
    background-repeat: no-repeat;
    font-size: 0.8em;
    margin-top:30px; margin-left: 50px;
  }
  
  h1{
    /* margin: 0;
    padding: 0;
    line-height: 1.5;
    size: 4em;
    color: #00f6ff; */

    background: linear-gradient(
        to right, 
        hsl(98 100% 62%), 
        hsl(204 100% 59%)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
      size: 3em;
  }
  
  .app {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .item {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    margin-left: 30px;
  }
  .item1 {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    margin-left: 30px;
  }
  .radio {
    display: none;
  }
  .radio ~ span {
    font-size: 6rem;
    filter: grayscale(0);
    cursor: pointer;
    transition: 0.3s;
  }
  
  .radio:checked ~ span {
    filter:contrast(100);
    font-size: 4rem;
  }
  .radio1 {
    display: none;
  }
  .radio1 ~ span {
    font-size: 6rem;
    filter: grayscale(0);
    cursor: pointer;
    transition: 0.3s;
  }
  
  .radio1:checked ~ span {
    filter: contrast(100);
    font-size: 4rem;
  }
textarea{
    padding: 5px;
    margin: 10px;
    height: 100px;
    width: 375px;
}  


/* CSS */

  
  

  
  a {
    color: teal;
    text-decoration:none;
  }
  
  button {
    width: 300px;
    height: 32px;
    cursor: pointer;
    color: turquoise;
    font-size: 15px;
    border-radius: 1rem;
    border: none;
    position: relative;
    background: #100720;
    transition: 0.1s;
  }
  
  button::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  button:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    transition: 0.5s;
  }