* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  background-color: #e4f0fc;
  font-family: Arial, sans-serif;
  /* height: 100vh; */
}
.container {
  padding: 30px;
  background: azure;
  margin: 20px;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button {
  margin: 20px;
  padding: 10px 20px;
  border: none;
  background: greenyellow;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 12px;
}
button:hover {
  box-shadow: 0 0 10px yellowgreen;
  cursor: pointer;
}

#result {
  margin: 20px;
  font-size: 4rem;
}
img{
    width: 60px;
}
#result2 {
  margin: 20px;
  font-weight: bold;
  font-size: 2rem;
}
h2{
    font-style: italic;
    color: rgb(202, 73, 50);
}
