@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Patua+One&display=swap");

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

.notification-verhuur {
    padding: 1rem 3rem;
    position: fixed;
    z-index: 1333333333;
    bottom: -3rem;
    right: 1rem;
    background: #3dc1ef;
    color: white;
    text-decoration: none;
    animation: wiggle .5s ease-in-out forwards;
    transition: all 0.3s ease-in-out;
    border-bottom: 5px solid #686868;
}

.notification-verhuur > span {
  font-size: 1rem;
    padding-top: 3px;
    position: relative;
    font-weight: bold;
    display: block;
}

.notification-verhuur:hover {
  transform: scale(1.1);
  text-decoration: none;  
}

@keyframes wiggle {
  0% {
    bottom: -3rem;
  }
  100% {
    bottom: 1rem;
  }
}

#scroll-top-link {
  display: none !important;
}

