body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #7dc7ec, #f1f4f7);
  color: #111010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 50px;
  color: #0a0a0a;
}
button{
    margin-top: 30px;
    padding: 10px;
    width: 20vh;
    background-color: rgb(243, 247, 248);
    color:rgb(18, 18, 19);
    border: 2px solid rgb(196, 193, 193);
    border-radius: 20px;
    box-shadow: black;
    font-style: italic;
}

#result {
  font-size: 80px;
  background: #04b7fd;
  font-style: italic;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px
}