@import url("https://fonts.googleapis.com/css?family=Dancing+Script");

#rosebud {
  font-size: 5vw;
  text-decoration: none;
  color: hsla(100, 100%, 0%, 0.7);
  font-family: "Dancing Script", cursive;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  width: 546px;
  height: 265px;
  margin-left: -273px;
  margin-top: -132px;
  animation: fadein 3s;
  cursor: pointer;
}

#rosebud:hover {
  font-size: 7vw;
}

#hover {
  font-size: 3vw;
  text-decoration: none;
  color: hsla(100, 100%, 0%, 0.7);
  font-family: "Dancing Script", cursive;
  left: 50%;
  text-align: center;
  margin-top: -5vw;
  cursor: pointer;
  display: block;
  margin-bottom: 0;
  border: none;
  animation: fadein 10s;
  cursor: pointer;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
