body {
  background-image: url(eggs.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  /* max-height: 100%; */
  background-color: rgb(179, 182, 184);
}
#header {
  display: flex;
  justify-content: center;
  background: linear-gradient(
    18deg,
    rgba(221, 221, 221, 1) 0%,
    rgba(249, 243, 243, 1) 35%,
    rgba(247, 217, 217, 1) 100%
  );
}
h1 {
  font-size: 44px;
  font-family: "Caveat", cursive;
}
#text {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-family: "Caveat", cursive;
  margin-top: 50px;
}
p {
  margin-top: 10px;
  text-align: center;
}
#btn-container {
  display: flex;
  justify-content: space-around;
}
.btn {
  margin-top: 100px;
  background: rgb(221, 221, 221);
  background: linear-gradient(
    18deg,
    rgba(221, 221, 221, 1) 0%,
    rgba(249, 243, 243, 1) 35%,
    rgba(247, 217, 217, 1) 100%
  );
  padding: 25px;
  border: none;
  border-radius: 40px;
  font-family: "Caveat", cursive;
  font-size: 35px;
}
.btn:hover {
  transition-duration: 15s ease;
  background: linear-gradient(
    18deg,
    rgba(248, 161, 209, 1) 0%,
    rgba(227, 107, 174, 1) 25%,
    rgba(179, 65, 128, 1) 50%,
    rgba(130, 38, 89, 1) 75%
  );
}
video {
  display: none;
}
#back {
  display: none;
}
.btn.back {
  margin-top: 50px;
}
#myVideo {
  position: fixed;
  top: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  z-index: -10;
}
@media all and (max-width: 950px) {
  .btn {
    margin-top: 50px;
  }
}
@media all and (max-width: 540px) {
  #btn-container {
    flex-direction: column;
  }
  #text {
    font-size: 26px;
  }
  .btn {
    margin-top: 15px;
  }
  h1 {
    font-size: 36px;
    font-size: 28px;
  }
}
