* {
  margin: 0;
  padding: 0;
}

#background {
  border: 0px;
  width: 1280px;
  height: 800px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

html, body {
  width: 1280px;
  height: 800px;
  background-image: linear-gradient(94.3deg, rgb(255, 158, 158) 10.9%, rgb(154, 252, 255) 87.1%);
}

section {
  position: absolute;
  height: 800px;
  width: 430px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  position: relative;
  z-index: 3;
  width: 430px;
  height: 800px;
  background-color: rgba(255, 255, 255, .1);
  padding: 0px 30px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
}

.box p{
  color: #fff;
  display: block;
  text-align: center;
  font-size: 4vw;
  font-weight: bolder;
  margin: 70% 0 30px 0;
}

.button {
  width: auto;
  text-align: center;
  position:absolute;
  margin-left: 10%;
  width: 50%;
  height: 25px;
  border: 0;
  background-image: linear-gradient(to right, #FF9B9B 0%, #FFCECE 51%, #FF9B9B 100%);
  background-size: 200% auto;
  border-radius: 8px;
  color: #fff;
  outline: none;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  transition: ease .4s;
  text-decoration: none;
}

.button:hover{
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

#button1{
  padding: 20px 10%;
  margin-top: 5%;
}

#button2{
  padding: 20px 10%;
  margin-top: 25%;
}