@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color:ghostwhite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

h1{
  font-size: 30px;
  color: rgb(90, 86, 86);
}

h2{
  font-size: 20px;

}

p{
  font-size: 18px;
}

textarea{
  width:700px; 
  height:300px;
  font:inherit;
}
  
