/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  text-align:center ;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: linear-gradient(90deg, #ff4d4d, #ffb3b3,#ff4d4d);
}
::selection{
  color: #fff;
  background: #5256AD;
}
.wrapper{
  margin-top: 17px;
  margin-bottom: 17px;
  width: 600px;
  padding: 25px 30px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.05);
}

.wrapper header{
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.actual{
  font-weight: bold;
}
@media(max-width: 728px){
  body{
    background-image: linear-gradient(90deg, #33ffa2, #b3ffdc,#33ffa2);
  }
  .wrapper{
    max-width: 345px;
    width: 100%;
    margin-left: 7px;
    margin-right: 7px;
  }
}