*{
  padding: 0;
  margin: 0;
}
body{
  color: hsl(234, 29%, 20%);
  font-family: "Roboto";
  font-weight: 500;
  height: 100vh;
}
main{
  width: 375px;
  max-width: 768px;
  height: 97vh;
  padding-top: 150px;
  padding-left: 25px;
  padding-right: 25px;
}
h1{
  font-size: 40px;
  line-height: 2.5rem;
  margin-bottom: 25px;
}
p{
  font-size: 17px;
  line-height: 1.5rem;
}
.good-tick{
  margin-bottom: 35px;
}
.btn{
  height: 63%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
button{
  height: 60px;
  border: none;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background-color: hsl(234, 29%, 20%);
}

@media (min-width:1024px) {
  body{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(235, 18%, 26%);
  }
  main{
    background-color: #ffffff;
    border-radius: 50px;
    width: 400px;
    height: 430px;
    padding: 60px 70px 60px 70px;
  }
  h1{
    font-size: 60px;
    line-height: 3.5rem;
    margin-bottom: 25px;
  }
  .btn{
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  button:hover {
    background: linear-gradient(to right, #ff416c, #fd5a3d); 
    color: white; 
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
}