html{
    scrollbar-width: none;
}
h1 {
    font-size: 72px;
    background: -webkit-linear-gradient(#1BFFFF,#2E3192);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h2 {
    font-size: 24px;
    background: -webkit-linear-gradient(#2E3192,#2d2f82);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.body{
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -5%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
textarea, input{
    background-color: #878787;
    border: none;
    box-sizing: border-box;
    width: min-content;
    color:black;
    padding: 5px;
    width:150%;
    margin:20px;
    text-align: center;
    resize: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    border-radius: 100px;
    transition: 0.5s;
}
textarea:hover, input:hover{
    cursor: pointer;
    background-color: #979797;
    transform: scale(110%);

}
::placeholder{
    color: rgb(0, 0, 0);
    opacity: 1;
}
.background{
    background: linear-gradient(#0f1013, #40414a);
    width: 100svw;
    height: 100svh;
    position: absolute;
    z-index: -1000;
    top:0;
}