@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
.container{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    width: 100% ;
    height: 120vh;
    /* border: 1px solid red; */
    background: #fff    ;
}
.container h3{
    color: #111;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
}
.container .paragraf{
    color: #333;
    font-weight: 600;
    width: 75%;
    text-align: center;
}
.Form-cont{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    height:80%;
    /* border: 1px solid red; */
}
h4{
    font-size: 24px;
    font-weight: 600;
    color: black;
    margin-top: 20px;
}
.Form-cont .diapazon{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content:space-around;
    width: 100%;
    height: 17vh;
    /* border: 1px solid red; */
}
.input-item{
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    width: 40%;
    height: 100%;
    /* border: 1px solid red; */
}
.input-item p{
    margin-left: 20px;
    font-size: 20px;
    color: black;
    font-weight: 600;
}
.input-item input{
    width: 90%;
    height: 50px;
    /* margin: 5px 0; */
    padding-left: 20px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    outline: none;
    background-color: rgba(0,0,0,0.2) ;
    border-radius: 5px;
    font-family: 'Titillium Web', sans-serif;
    transition: .3s ease-in-out;
    border: 3px solid #999;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.input-item input::placeholder{
    opacity: 0.5;
}
.input-item input::-webkit-inner-spin-button,
.input-item input::-webkit-outer-spin-button{
    -webkit-appearance: none;
}

.input-item input:focus{
    border: 3px solid #555;
    -webkit-appearance: none;
}
.input-item span{
    margin-left: 20px;
    font-weight: 400;
    font-size: 14px;
}
.input-item:nth-child(2) input[type="button"]{
    background-color: #555;
    letter-spacing: 1px;
    color: white;
    
}
.input-item:nth-child(2) input[type="button"]:hover{
    background-color: #666;
    cursor: pointer;
    color: rgb(9, 8, 8);
}
.input-item:nth-child(2) {
    justify-content: center;
}
.Random{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
    height: 40vh;
    /* border: 1px solid red; */
}
.Random h6{
    font-size: 24px;
    letter-spacing: 0px;
}
.Random .textarea{
    padding: 15px;
    font-family: 'Titillium Web', sans-serif;
    width: 90%;
    height: 70%;
    resize: none;
    outline: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: rgba(0,0,0,0.1);
}





@media only screen and (max-width: 891px) {
    .container{
        height: 180vh;
    }
    .container .Form-cont{
        justify-content: space-evenly;
        height: 150vh;
    }
    .input-item{
        width: 520px;
        
        padding-left: 5px;
        /* margin-bottom: 20px; */
    }
    .input-item span{
        margin-left: 20px;
        font-weight: 400;
        font-size: 12px;
    }
    .input-item input{
        width: 500px;
        margin: 5px 0;
    }
    .Form-cont .diapazon{
        height: 17vh;   
        flex-wrap: wrap;
    }
    .Random{
        height: 38vh;
    }
  }
  @media only screen and (max-width: 540px){
    .input-item input{
        width: 400px;
    }
    .input-item{
        align-items: center;
    }
  }
  @media only screen and (max-width: 440px){
    .input-item input{
        width: 320px;
    }
    .input-item{
        align-items: center;
    }
  }
