
body {
  background-image: url(./background_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  
}
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#btn {
  position: fixed;
  padding: 20px;
  border-radius: 50px;
  border: 5px solid rgb(157, 241, 223);
  background-color:bisque;
  font-size: 30px;
  font-family: 'Edu TAS Beginner', cursive;
  text-shadow: 1px 1px 2px rgb(241, 164, 20), 0 0 1em blue, 0 0 0.2em rgb(10, 2, 12);
  box-shadow: 10px 10px 35px 21px rgba(70, 44, 184, 0.33);
  -webkit-box-shadow: 10px 10px 35px 21px rgba(157, 241, 184, 0.705);
  -moz-box-shadow: 10px 10px 35px 21px rgba(161, 44, 184, 0.33);;
}
#btn:active {
  box-shadow: none;
}
#par {
  font-family: 'Edu TAS Beginner', cursive;
  font-size: 20px;
  background-color:rgba(200, 157, 241, 0.9);
  margin-top: 400px;
  padding: 20px;
  border-radius: 50px;
  display: none;
  width: 70%;
  text-align: center;
  border: none;
  box-shadow: 10px 10px 35px 21px rgba(70, 44, 184, 0.33);
  -webkit-box-shadow: 10px 10px 35px 21px rgba(200, 157, 241, 0.568);
  -moz-box-shadow: 10px 10px 35px 21px rgba(161, 44, 184, 0.253);;
}