*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;

}
body{
    background-color: darkkhaki;
}
#Fact{
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: green;
    margin: 20px 0px 30px 0px;
}
#Generate{
    font-size: 25px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    background-color: black;
    border-radius: 10px;
    height: 50px;
    width: 240px;    
    margin-bottom: 40px;
}
.Container{
    /*height: 500px;
    width: 700px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   /* width: 700px;
    height: 500px;*/
   
}
.para{
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: blue; 
}
#textfield{
height: 200px;
width: 500px;
font-size: 20px;
border-radius: 10px;
background-color: white;
color: black;
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
} 
@media only screen and (max-width: 400px) {
    body {
      background-color: lightblue;
    }
    
#textfield{
    height: 150px;
    width: 300px;
    font-size: 15px;
    border-radius: 5px;
}
#Fact{
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: green;
    margin: 20px 0px 20px 0px;
}
  }