body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  margin-top: 100px;
  overflow: hidden;
}
.bg {
  background-image: url(hearts.png);
  width: 100%;
  height: 100%;
  position: relative;
  background-attachment: fixed;
}
.bg {
  background-image: url(hearts.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px) brightness(85%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 65%;
}
.header_text {
  font-family: 'Porky\'s Font';
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: calc(2rem + 1vw);
  text-align: center;
  opacity: 0.75;
  color: #d15a5a;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}
@font-face {
  font-family: 'Porky\'s Font';
  font-style: normal;
  font-weight: 400;
  src: local('Porky\'s Font'),
       local('PorkysFont-Regular'),
       url('Porkys.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF;
}
#noButton {
  position: absolute;
  margin-left: 270px;
  transition: 0.5s;
}
#yesButton {
  position: absolute;
  margin-right: 230px;
}
.buttons {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-left: 50px;
  height: 100px;
  opacity: 0.8;
}
.btn {
  background-color: #d15a5a;
  color: rgb(255, 255, 255);
  padding: 15px 15px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  border: double;
  font-family: "F04b 30";
}
.gif_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.float{
  width: 25%;
  height: 25%;
  animation: float 2s ease-in-out infinite;
  margin-left: 10%;
}
@keyframes float{
  0%{
    transform: translateY(0) translateX(-20%);
  }
  50%{
    transform: translateY(-20px) translateX(-20%);
  }
  100%{
    transform: translateY(0) translateX(-20%);
  }
}
@media only screen and (max-width: 320px) and (max-height: 568px) {
  body {
      height: 100vh;
  }

  .header_text {
      font-size: 20px;
  }

  .bg {
      height: 60vh;
  }

  .btn {
      padding: 10px 18px;
      font-size: 12px;
  }
}
@media only screen and (max-width: 414px) and (max-height: 736px) {
  body {
      height: 90vh;
  }

  .header_text {
      font-size: 28px;
  }

  .bg {
      height: 60vh;
  }

  .btn {
      padding: 15px 25px;
      font-size: 14px;
  }
}
.feb {
  width:5%;
  position: absolute;
  bottom: 50px;
  right: 50px;
  
  -webkit-animation: heartbeat 3.5s ease-in-out infinite both;
	        animation: heartbeat 3.5s ease-in-out infinite both;
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
