* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}
img {
  width: 100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.hero {
  height: 100vh;
  background-image: url(../image/pattern-background-desktop.svg);
  background-size: cover;
  background-position: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  border-radius: 20px;
  font-family: "Red Hat Display", sans-serif;
  filter: drop-shadow(0 1px 50px hsl(224, 23%, 55%));
  background-color: hsl(225, 100%, 98%);
  width: 500px;
}
.text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 30px;
}
.text h1 {
  color: hsl(223, 47%, 23%);
  padding-block: 20px;
  font-weight: 900;
}
.text p {
  font-weight: 500;
  width: 50%;
  text-align: center;
  line-height: 25px;
  color: hsl(224, 23%, 55%);
}
.line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: auto;
  padding-bottom: 50px;
}
.line img {
  width: 15%;
}
.line .line-text {
  width: 50%;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.line .line-text h3 {
  color: hsl(223, 47%, 23%);
  font-weight: 0--;
}
.line .line-text {
  color: hsl(224, 23%, 55%);
  font-weight: 500;
}
.line a {
  font-weight: 500;
  color: hsl(245, 75%, 52%);
  transition: all 0.3s;
}
.line a:hover {
  color: hsl(271, 75%, 57%);
  text-decoration: none;
}
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 50px;
}
.buttons a.proceed {
  background-color: hsl(245, 75%, 52%);
  padding: 10px 80px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: hsl(225, 100%, 98%);
  font-weight: 700;
  transition: all 0.3s;
}
.buttons a.proceed:hover {
  background-color: hsl(271, 75%, 57%);
}
.buttons a.cancel {
  text-decoration: none;
  color: hsl(224, 23%, 55%);
  padding-block: 20px;
  transition: all 0.3s;
  font-weight: 700;
}
.buttons a.cancel:hover {
  color: hsl(223, 47%, 23%);
}
