body {
   background-image: url(bg.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   margin: 0;
}
#container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100vh;
}
#btn {
   background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
   font-family: "Readex Pro", sans-serif;
   color: #fff;
   font-size: 26px;
   font-weight: 500;
   border: none;
   border-radius: 50px;
   padding: 20px 30px;
   width: 700px;
   cursor: pointer;
   position: fixed;
   margin-top: 180px;
}
#btn:hover {
   background: linear-gradient(
      123.5deg,
      rgb(244, 219, 251) 29.3%,
      rgb(255, 214, 214) 67.1%
   );
   color: #38598b;
}
#quote {
   font-family: "Prata", serif;
   font-weight: 400;
   font-size: 60px;
   margin: 0;
   margin-bottom: 180px;
   color: #fff;
   padding: 0 200px;
   text-align: center;
}
