* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(https://cdn.pixabay.com/photo/2022/04/18/17/26/artwork-7141119_640.png);
  background-size: cover;
  gap: 10px;
}

h1 {
  color: #fff;
}

.wel-btn {
  align-items: center;
  height: 240px;
  width: 590px;
  border-radius: 25px;
  box-shadow: 20px 10px 20px rgba(213, 219, 216, 0.3);
  background-color: #fffffffa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.wel-btn > h1 {
  text-align: center;
  font-size: 35px;
  font-weight: 100;
  color: black;
}

.btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn > button {
  height: 48px;
  width: 150px;
  border: 1px solid black;
  border-radius: 10px;
  background-image: linear-gradient(
    to right,
    rgb(73, 37, 144),
    rgb(218, 24, 121)
  );
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn > button:hover {
  transform: scale(1.05);
  opacity: 0.9;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.btn > button > a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 48px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .wel-btn {
    height: 155px;
    width: 340px;
    border-radius: 25px;
  }

  .wel-btn > h1 {
    font-size: 25px;
  }
}
