* {
  box-sizing: border-box;
  margin: 1;
  padding: 2;
}

html,
body {
  font-family: Arial, Helvetica, sans-serif;
}

#app {
  width: 40em;
  height: 100vh;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h3 {
  margin-bottom: 1rem;
  font-weight: normal;
}

img {
  border-radius: 50%;
  border: 5px #333 solid;
  margin-bottom: 1rem;
}


.button {
  background-color: rgb(247, 141, 182);
  border: none;
  color: white;
  padding: 15px 32px 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.button:focus {
  outline: none;
}

.button:hover {
  transform: scale(0.98);
}

.hadith {
  background-color: hsla(243, 100%, 100%, 0.45);
  border-radius: 10px;
  padding: 2em;
  margin: 10wh;
}