*{
     padding: 0;
     margin: 0;
     box-sizing: border-box;
}

@font-face {
     font-family: Poppin;
     src: url(Poppins-Regular.ttf);
}
body{
     background: #f4fdff ;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
}

.main{
     padding: 30px;
     width: 600px;
     background: #18184d;
     border-radius: 5px;
}

form{
     display: flex;
     flex-direction: column;
}
input, textarea{
     padding: 12px;
     border-radius: 10px;
     margin-bottom: 10px;
     font-size: 20px;
     font-family: poppin;
     outline:none;
     border: none;
}
.send {
     background: rgb(72, 72, 255);
     color: white;
     margin-top: 15px;
     cursor: pointer;
     transition: 0.4s;
}
.send:hover{
     background: blue;
}

#height{
     height: 150px;    
}

h1{
     color: white;
     font-size: 40px;
     font-family: poppin;
     font-weight: 500;
     padding-bottom: 30px;
     text-align: center;
}
